public interface InterceptorProvider
InterceptorProvider
interface is implemented by objects
that have interceptor chains associated with them. The methods in this
interface provide the ability to add and remove interceptors to the chains
of the InterceptorProvider.Modifier and Type | Method and Description |
---|---|
List<Interceptor<? extends Message>> |
getInFaultInterceptors()
Returns the list of interceptors attached to the incoming fault interceptor
chain of the object.
|
List<Interceptor<? extends Message>> |
getInInterceptors()
Returns the list of interceptors attached to the incoming interceptor
chain of the object.
|
List<Interceptor<? extends Message>> |
getOutFaultInterceptors()
Returns the list of interceptors attached to the outgoing fault interceptor
chain of the object.
|
List<Interceptor<? extends Message>> |
getOutInterceptors()
Returns the list of interceptors attached to the outgoing interceptor
chain of the object.
|
List<Interceptor<? extends Message>> getInInterceptors()
List
incoming interceptor chainList<Interceptor<? extends Message>> getOutInterceptors()
List
outgoing interceptor chainList<Interceptor<? extends Message>> getInFaultInterceptors()
List
incoming fault interceptor chainList<Interceptor<? extends Message>> getOutFaultInterceptors()
List
outgoing fault interceptor chainCopyright © 2018 JBoss by Red Hat. All rights reserved.