Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
29.8. Annotations for Seam interceptors
The following annotations appear on Seam interceptor classes.
Please refer to the documentation for the EJB3 specification for information about the annotations required to define EJB interceptors.
-
@Interceptor
@Interceptor(stateless=true)
@Interceptor(stateless=true)
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specifies that this interceptor is stateless and Seam may optimize replication.@Interceptor(type=CLIENT)
@Interceptor(type=CLIENT)
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specifies that this interceptor is a "client-side" interceptor, called prior to the EJB container.@Interceptor(around={SomeInterceptor.class, OtherInterceptor.class})
@Interceptor(around={SomeInterceptor.class, OtherInterceptor.class})
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specifies that this interceptor is positioned higher in the stack than the given interceptors.@Interceptor(within={SomeInterceptor.class, OtherInterceptor.class})
@Interceptor(within={SomeInterceptor.class, OtherInterceptor.class})
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specifies that this interceptor is positioned deeper in the stack than the given interceptors.