@Documented @Inherited @Retention(value=RUNTIME) @Target(value=METHOD) @Advice public @interface After
@After
indicates that the annotated interceptor method is "After
advice".
After advice interceptor method is invoked after the targeting
component method has been executed.
There are several conventions on after advice method declaration are:
Dispatcher
throws IllegalArgumentException
Copyright © 2011-2014 Eiichiro Uchiumi. All Rights Reserved.