Uses of Interface
org.jboss.invocation.Interceptor
-
Packages that use Interceptor Package Description org.jboss.invocation -
-
Uses of Interceptor in org.jboss.invocation
Classes in org.jboss.invocation that implement Interceptor Modifier and Type Class Description classAccessCheckingInterceptorAn interceptor which enables access checking for the duration of the invocation.classContextClassLoaderInterceptorAn interceptor which sets the thread context class loader for the duration of an invocation.classDoAsInterceptorAn interceptor which executes under the invocation'sSubject.classInitialInterceptorThe initial interceptor that is called during an invocation.classMethodInterceptorA method interceptor.classMethodInvokingInterceptorAn interceptor which always invokes one specific method on one specific object given the parameters from the invocation context.classSecurityIdentityInterceptorAn interceptor which executes under the invocation'sSecurityIdentity.Fields in org.jboss.invocation declared as Interceptor Modifier and Type Field Description static Interceptor[]Interceptor. EMPTY_ARRAYAn empty interceptor array.Methods in org.jboss.invocation that return Interceptor Modifier and Type Method Description InterceptorImmediateInterceptorFactory. create(InterceptorFactoryContext context)Create the interceptor instance.InterceptorInterceptorFactory. create(InterceptorFactoryContext context)Create the interceptor instance.InterceptorMethodInterceptorFactory. create(InterceptorFactoryContext context)Create the interceptor instance.InterceptorMethodInvokingInterceptorFactory. create(InterceptorFactoryContext context)Create the interceptor instance.static InterceptorInterceptors. getChainedInterceptor(Collection<Interceptor> instances)Get a chained interceptor which passes the invocation through the given interceptors.static InterceptorInterceptors. getChainedInterceptor(Interceptor... instances)Get a chained interceptor which passes the invocation through the given interceptors.static InterceptorInterceptors. getInitialInterceptor()Get an interceptor that is always invoked first.Interceptor[]InterceptorContext. getInterceptors()Get the current interceptors.static InterceptorInterceptors. getInvokingInterceptor()Get an invoking interceptor which always terminates.static InterceptorInterceptors. getTerminalInterceptor()Get an interceptor which always returnsnull.static InterceptorInterceptors. getWeavedInterceptor(Interceptor... interceptors)Methods in org.jboss.invocation that return types with arguments of type Interceptor Modifier and Type Method Description List<Interceptor>InterceptorContext. getInterceptors$$bridge()Binary compatibility bridge for interceptors list.Methods in org.jboss.invocation with parameters of type Interceptor Modifier and Type Method Description static InterceptorInterceptors. getChainedInterceptor(Interceptor... instances)Get a chained interceptor which passes the invocation through the given interceptors.static InterceptorInterceptors. getWeavedInterceptor(Interceptor... interceptors)voidInterceptorContext. setInterceptors(Interceptor[] interceptors)Set the interceptor iterator.voidInterceptorContext. setInterceptors(Interceptor[] interceptors, int nextIndex)Set the interceptors, with a starting index to proceed from.Method parameters in org.jboss.invocation with type arguments of type Interceptor Modifier and Type Method Description static InterceptorInterceptors. getChainedInterceptor(Collection<Interceptor> instances)Get a chained interceptor which passes the invocation through the given interceptors.voidInterceptorContext. setInterceptors(List<Interceptor> interceptorList)Set the interceptor array from a list.voidInterceptorContext. setInterceptors(List<Interceptor> interceptorList, int nextIndex)Set the interceptors, with a starting index to proceed from.Constructors in org.jboss.invocation with parameters of type Interceptor Constructor Description ImmediateInterceptorFactory(Interceptor interceptor)Construct a new instance.InterceptorInvocationHandler(Interceptor interceptor)Construct a new instance.
-