Package ca.uhn.fhir.interceptor.api
Annotation Type Hook
-
@Target(METHOD) @Retention(RUNTIME) public @interface Hook
This annotation should be placed on interceptor methods. Thevalue=Pointcutproperty determines which event is actually being invoked. See the Pointcut JavaDoc for information on available method parameters for a given hook.- See Also:
Interceptor
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description intorderThe order that interceptors should be called in.
-
-
-
-
order
int order
The order that interceptors should be called in. Lower numbers happen before higher numbers. Default is 0 and allowable values can be positive or negative or 0.If no order is specified, or the order is set to
0(the default order), the order specified at the interceptor type level will take precedence.- Default:
- 0
-
-