Package org.apache.cxf.interceptor
Interface InterceptorProvider
- All Known Implementing Classes:
- AbstractAttributedInterceptorProvider,- AbstractBasicInterceptorProvider,- AbstractEndpointFactory,- AbstractInterceptorProvidingDataBinding,- BusDefinitionParser.BusConfig,- ClientImpl,- EndpointImpl,- ExtensionManagerBus,- ServiceImpl,- SpringBus,- StaxDataBinding
public interface InterceptorProvider
The 
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.- 
Method SummaryModifier and TypeMethodDescriptionList<Interceptor<? extends Message>>Returns the list of interceptors attached to the incoming fault interceptor chain of the object.List<Interceptor<? extends Message>>Returns the list of interceptors attached to the incoming interceptor chain of the object.List<Interceptor<? extends Message>>Returns the list of interceptors attached to the outgoing fault interceptor chain of the object.List<Interceptor<? extends Message>>Returns the list of interceptors attached to the outgoing interceptor chain of the object.
- 
Method Details- 
getInInterceptorsList<Interceptor<? extends Message>> getInInterceptors()Returns the list of interceptors attached to the incoming interceptor chain of the object.- Returns:
- Listincoming interceptor chain
 
- 
getOutInterceptorsList<Interceptor<? extends Message>> getOutInterceptors()Returns the list of interceptors attached to the outgoing interceptor chain of the object.- Returns:
- Listoutgoing interceptor chain
 
- 
getInFaultInterceptorsList<Interceptor<? extends Message>> getInFaultInterceptors()Returns the list of interceptors attached to the incoming fault interceptor chain of the object.- Returns:
- Listincoming fault interceptor chain
 
- 
getOutFaultInterceptorsList<Interceptor<? extends Message>> getOutFaultInterceptors()Returns the list of interceptors attached to the outgoing fault interceptor chain of the object.- Returns:
- Listoutgoing fault interceptor chain
 
 
-