Annotation Type LifecycleEvents
-
@Retention(RUNTIME) @Target(TYPE) @Inherited public @interface LifecycleEvents
LifecycleEventInterceptor is an annotation that should be applied toEventInterceptor
implementations that want to receiveLifecycleEvent
s.- Since:
- 20.06
- Author:
- as 2020.04.01
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description LifecycleEvent.Type[]
value
This element specifies all types ofLifecycleEvent.Type
s the interceptor would like to be invoked on.
-
-
-
Element Detail
-
value
LifecycleEvent.Type[] value
This element specifies all types ofLifecycleEvent.Type
s the interceptor would like to be invoked on.If not specified, the interceptor will be registered to handle ALL
LifecycleEvent.Type
s.- Returns:
- all
LifecycleEvent.Type
s theEventInterceptor
would like to receive notifications on
- Default:
- {}
-
-