org.apache.cxf.interceptor
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> |
getInFaultInterceptors()
Returns the list of interceptors attached to the incoming fault interceptor
chain of the object.
|
List<Interceptor> |
getInInterceptors()
Returns the list of interceptors attached to the incoming interceptor
chain of the object.
|
List<Interceptor> |
getOutFaultInterceptors()
Returns the list of interceptors attached to the outgoing fault interceptor
chain of the object.
|
List<Interceptor> |
getOutInterceptors()
Returns the list of interceptors attached to the outgoing interceptor
chain of the object.
|
List<Interceptor> getInInterceptors()
List incoming interceptor chainList<Interceptor> getOutInterceptors()
List outgoing interceptor chainList<Interceptor> getInFaultInterceptors()
List incoming fault interceptor chainList<Interceptor> getOutFaultInterceptors()
List outgoing fault interceptor chainApache CXF