@Retention(value=RUNTIME) @Target(value={TYPE,METHOD}) public @interface InterceptedBy
A controller class or its methods can be annotated with this annotation to specify which interceptors will intercept @Action method invocations. The order of the interceptors specified is important, as they will be invoked in the sequence in which they are declared.
If a controller class is annotated with this annotation, all @Action methods, and any @DefaultAction method, will be intercepted by the declared interceptor(s).
public abstract Class<?>[] value
Copyright © 2011-2012 MojaveMVC.org