Annotation Interface InterceptorRef
This annotation allows an interceptor to be applied to an action. If this annotation is used at the class level, then the interceptor will be applied to all actions defined on that class, and will be applied before the ones defined at the method level.
- 
Required Element SummaryRequired Elements
- 
Optional Element SummaryOptional Elements
- 
Element Details- 
valueString value- Returns:
- name of the interceptor or interceptor stack
 
 
- 
- 
- 
paramsString[] params- Returns:
- The parameters passed to the interceptor. This is a list of strings that form a name/value
          pair chain, since creating a Map for annotations is not possible. An example would be:
          {"key", "value", "key2", "value2"}.
 - Default:
- {}
 
 
-