Package org.apache.cxf.interceptor
Interface InterceptorProvider
- 
- All Known Implementing Classes:
- AbstractAttributedInterceptorProvider,- AbstractBasicInterceptorProvider,- AbstractEndpointFactory,- AbstractInterceptorProvidingDataBinding,- BlueprintBus,- BusDefinitionParser.BusConfig,- ClientImpl,- EndpointImpl,- ExtensionManagerBus,- ServiceImpl,- SpringBus,- StaxDataBinding
 
 public interface InterceptorProviderTheInterceptorProviderinterface 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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method 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.
 
- 
- 
- 
Method Detail- 
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
 
 
- 
 
-