Apache CXF API

Uses of Interface
org.apache.cxf.interceptor.Interceptor

Packages that use Interceptor
org.apache.cxf.binding.soap.interceptor   
org.apache.cxf.binding.soap.saaj   
org.apache.cxf.binding.xml.interceptor   
org.apache.cxf.databinding.stax   
org.apache.cxf.interceptor Core interceptor interfaces which form the basis for message processing chains in CXF. 
org.apache.cxf.jaxrs.interceptor   
org.apache.cxf.phase An InterceptorChain implementation which uses the concept of Phases to order message chains. 
org.apache.cxf.transport Transport related classes. 
org.apache.cxf.transport.http.gzip   
org.apache.cxf.ws.policy   
 

Uses of Interceptor in org.apache.cxf.binding.soap.interceptor
 

Subinterfaces of Interceptor in org.apache.cxf.binding.soap.interceptor
 interface SoapInterceptor
           
 

Classes in org.apache.cxf.binding.soap.interceptor that implement Interceptor
 class AbstractSoapInterceptor
           
 class CheckFaultInterceptor
           
 class EndpointSelectionInterceptor
          Selects the most appropriate endpoint based on the SOAP version used.
 class MustUnderstandInterceptor
           
 class ReadHeadersInterceptor
           
 class RPCInInterceptor
           
 class RPCOutInterceptor
           
 class Soap11FaultInInterceptor
           
 class Soap11FaultOutInterceptor
           
 class Soap12FaultInInterceptor
           
 class Soap12FaultOutInterceptor
           
 class SoapActionInInterceptor
           
 class SoapActionOutInterceptor
          Deprecated. 
 class SoapHeaderInterceptor
          Perform databinding of the SOAP headers.
 class SoapHeaderOutFilterInterceptor
           
 class SoapOutInterceptor
           
 class SoapOutInterceptor.SoapOutEndingInterceptor
           
 class SoapPreProtocolOutInterceptor
          This interceptor is responsible for setting up the SOAP version and header, so that this is available to any pre-protocol interceptors that require these to be available.
 

Uses of Interceptor in org.apache.cxf.binding.soap.saaj
 

Classes in org.apache.cxf.binding.soap.saaj that implement Interceptor
 class SAAJInInterceptor
          Builds a SAAJ tree from the Document fragment inside the message which contains the SOAP headers and from the XMLStreamReader.
 class SAAJOutInterceptor
          Sets up the outgoing chain to build a SAAJ tree instead of writing directly to the output stream.
 class SAAJOutInterceptor.SAAJOutEndingInterceptor
           
 

Uses of Interceptor in org.apache.cxf.binding.xml.interceptor
 

Classes in org.apache.cxf.binding.xml.interceptor that implement Interceptor
 class XMLFaultInInterceptor
           
 class XMLFaultOutInterceptor
           
 class XMLMessageInInterceptor
           
 class XMLMessageOutInterceptor
           
 

Uses of Interceptor in org.apache.cxf.databinding.stax
 

Classes in org.apache.cxf.databinding.stax that implement Interceptor
 class StaxDataBindingInterceptor
           
 

Uses of Interceptor in org.apache.cxf.interceptor
 

Classes in org.apache.cxf.interceptor that implement Interceptor
 class AbstractEndpointSelectionInterceptor
           
 class AbstractInDatabindingInterceptor
           
 class AbstractOutDatabindingInterceptor
           
 class AttachmentInInterceptor
           
 class AttachmentOutInterceptor
           
 class AttachmentOutInterceptor.AttachmentOutEndingInterceptor
           
 class BareInInterceptor
           
 class BareOutInterceptor
           
 class ClientFaultConverter
          Takes a Fault and converts it to a local exception type if possible.
 class DocLiteralInInterceptor
           
 class FaultOutInterceptor
           
 class FIStaxInInterceptor
          Creates an XMLStreamReader from the InputStream on the Message.
 class FIStaxOutInterceptor
          Creates an XMLStreamReader from the InputStream on the Message.
 class LoggingInInterceptor
          A simple logging handler which outputs the bytes of the message to the Logger.
 class LoggingOutInterceptor
           
 class MessageSenderInterceptor
          Takes the Conduit from the exchange and sends the message through it.
 class MessageSenderInterceptor.MessageSenderEndingInterceptor
           
 class OutgoingChainInterceptor
           
 class ServiceInvokerInterceptor
          Invokes a Binding's invoker with the INVOCATION_INPUT from the Exchange.
 class StaxInInterceptor
          Creates an XMLStreamReader from the InputStream on the Message.
 class StaxOutInterceptor
          Creates an XMLStreamReader from the InputStream on the Message.
 class StaxOutInterceptor.StaxOutEndingInterceptor
           
 class URIMappingInterceptor
           
 class WrappedInInterceptor
           
 class WrappedOutInterceptor
           
 class WrappedOutInterceptor.WrappedOutEndingInterceptor
           
 

Methods in org.apache.cxf.interceptor that return types with arguments of type Interceptor
 java.util.List<Interceptor> AnnotationInterceptors.getInFaultInterceptors()
           
 java.util.List<Interceptor> InterceptorProvider.getInFaultInterceptors()
          Returns the list of interceptors attached to the incoming fault interceptor chain of the object.
 java.util.List<Interceptor> AbstractAttributedInterceptorProvider.getInFaultInterceptors()
           
 java.util.List<Interceptor> AbstractBasicInterceptorProvider.getInFaultInterceptors()
           
 java.util.List<Interceptor> AnnotationInterceptors.getInInterceptors()
           
 java.util.List<Interceptor> InterceptorProvider.getInInterceptors()
          Returns the list of interceptors attached to the incoming interceptor chain of the object.
 java.util.List<Interceptor> AbstractAttributedInterceptorProvider.getInInterceptors()
           
 java.util.List<Interceptor> AbstractBasicInterceptorProvider.getInInterceptors()
           
 java.util.ListIterator<Interceptor<? extends Message>> InterceptorChain.getIterator()
           
 java.util.List<Interceptor> AnnotationInterceptors.getOutFaultInterceptors()
           
 java.util.List<Interceptor> InterceptorProvider.getOutFaultInterceptors()
          Returns the list of interceptors attached to the outgoing fault interceptor chain of the object.
 java.util.List<Interceptor> AbstractAttributedInterceptorProvider.getOutFaultInterceptors()
           
 java.util.List<Interceptor> AbstractBasicInterceptorProvider.getOutFaultInterceptors()
           
 java.util.List<Interceptor> AnnotationInterceptors.getOutInterceptors()
           
 java.util.List<Interceptor> InterceptorProvider.getOutInterceptors()
          Returns the list of interceptors attached to the outgoing interceptor chain of the object.
 java.util.List<Interceptor> AbstractAttributedInterceptorProvider.getOutInterceptors()
           
 java.util.List<Interceptor> AbstractBasicInterceptorProvider.getOutInterceptors()
           
 

Methods in org.apache.cxf.interceptor with parameters of type Interceptor
 void InterceptorChain.add(Interceptor i)
           
 void InterceptorChain.remove(Interceptor i)
           
 

Method parameters in org.apache.cxf.interceptor with type arguments of type Interceptor
 void InterceptorChain.add(java.util.Collection<Interceptor> i)
           
 void AbstractAttributedInterceptorProvider.setInFaultInterceptors(java.util.List<Interceptor> interceptors)
           
 void AbstractBasicInterceptorProvider.setInFaultInterceptors(java.util.List<Interceptor> interceptors)
           
 void AbstractAttributedInterceptorProvider.setInInterceptors(java.util.List<Interceptor> interceptors)
           
 void AbstractBasicInterceptorProvider.setInInterceptors(java.util.List<Interceptor> interceptors)
           
 void AbstractAttributedInterceptorProvider.setOutFaultInterceptors(java.util.List<Interceptor> interceptors)
           
 void AbstractBasicInterceptorProvider.setOutFaultInterceptors(java.util.List<Interceptor> interceptors)
           
 void AbstractAttributedInterceptorProvider.setOutInterceptors(java.util.List<Interceptor> interceptors)
           
 void AbstractBasicInterceptorProvider.setOutInterceptors(java.util.List<Interceptor> interceptors)
           
 

Uses of Interceptor in org.apache.cxf.jaxrs.interceptor
 

Classes in org.apache.cxf.jaxrs.interceptor that implement Interceptor
 class JAXRSInInterceptor
           
 class JAXRSOutInterceptor
           
 

Uses of Interceptor in org.apache.cxf.phase
 

Subinterfaces of Interceptor in org.apache.cxf.phase
 interface PhaseInterceptor<T extends Message>
          A phase interceptor participates in a PhaseInterceptorChain.
 

Classes in org.apache.cxf.phase that implement Interceptor
 class AbstractPhaseInterceptor<T extends Message>
           
 

Methods in org.apache.cxf.phase that return types with arguments of type Interceptor
 java.util.ListIterator<Interceptor<? extends Message>> PhaseInterceptorChain.getIterator()
           
 java.util.Iterator<Interceptor<? extends Message>> PhaseInterceptorChain.iterator()
           
 

Methods in org.apache.cxf.phase with parameters of type Interceptor
 void PhaseInterceptorChain.add(Interceptor i)
           
 void PhaseInterceptorChain.add(Interceptor i, boolean force)
           
 void PhaseInterceptorChain.remove(Interceptor i)
           
 

Method parameters in org.apache.cxf.phase with type arguments of type Interceptor
 void PhaseInterceptorChain.add(java.util.Collection<Interceptor> newhandlers)
           
 void PhaseInterceptorChain.add(java.util.Collection<Interceptor> newhandlers, boolean force)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2, java.util.List<Interceptor> p3)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2, java.util.List<Interceptor> p3)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2, java.util.List<Interceptor> p3)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2, java.util.List<Interceptor> p3, java.util.List<Interceptor> p4)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2, java.util.List<Interceptor> p3, java.util.List<Interceptor> p4)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2, java.util.List<Interceptor> p3, java.util.List<Interceptor> p4)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2, java.util.List<Interceptor> p3, java.util.List<Interceptor> p4)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2, java.util.List<Interceptor> p3, java.util.List<Interceptor> p4, java.util.List<Interceptor> p5)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2, java.util.List<Interceptor> p3, java.util.List<Interceptor> p4, java.util.List<Interceptor> p5)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2, java.util.List<Interceptor> p3, java.util.List<Interceptor> p4, java.util.List<Interceptor> p5)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2, java.util.List<Interceptor> p3, java.util.List<Interceptor> p4, java.util.List<Interceptor> p5)
           
 PhaseInterceptorChain PhaseChainCache.get(java.util.SortedSet<Phase> phaseList, java.util.List<Interceptor> p1, java.util.List<Interceptor> p2, java.util.List<Interceptor> p3, java.util.List<Interceptor> p4, java.util.List<Interceptor> p5)
           
 

Uses of Interceptor in org.apache.cxf.transport
 

Fields in org.apache.cxf.transport with type parameters of type Interceptor
protected  java.util.List<Interceptor> MultipleEndpointObserver.bindingInterceptors
           
protected  java.util.List<Interceptor> MultipleEndpointObserver.routingInterceptors
           
 

Methods in org.apache.cxf.transport that return types with arguments of type Interceptor
 java.util.List<Interceptor> MultipleEndpointObserver.getBindingInterceptors()
           
 java.util.List<Interceptor> MultipleEndpointObserver.getRoutingInterceptors()
           
 

Uses of Interceptor in org.apache.cxf.transport.http.gzip
 

Classes in org.apache.cxf.transport.http.gzip that implement Interceptor
 class GZIPInInterceptor
          CXF interceptor that uncompresses those incoming messages that have "gzip" content-encoding.
 class GZIPInInterceptor.GZIPInEndingInterceptor
          Ending interceptor to restore the original input stream after processing, so as not to interfere with streaming HTTP.
 class GZIPOutInterceptor
          CXF interceptor that compresses outgoing messages using gzip and sets the HTTP Content-Encoding header appropriately.
 

Uses of Interceptor in org.apache.cxf.ws.policy
 

Methods in org.apache.cxf.ws.policy that return types with arguments of type Interceptor
 java.util.List<Interceptor> EndpointPolicy.getFaultInterceptors()
           
 java.util.List<Interceptor> EffectivePolicy.getInterceptors()
           
 java.util.List<Interceptor> EndpointPolicy.getInterceptors()
           
 java.util.List<Interceptor> PolicyInterceptorProviderRegistry.getInterceptors(java.util.Collection<PolicyAssertion> alterative, boolean out, boolean fault)
           
 java.util.List<Interceptor> AbstractPolicyInterceptorProvider.provideInFaultInterceptors(Message m)
           
 java.util.List<Interceptor> PolicyInterceptorProvider.provideInFaultInterceptors(Message m)
           
 java.util.List<Interceptor> AbstractPolicyInterceptorProvider.provideInInterceptors(Message m)
           
 java.util.List<Interceptor> PolicyInterceptorProvider.provideInInterceptors(Message m)
           
 java.util.List<Interceptor> AbstractPolicyInterceptorProvider.provideOutFaultInterceptors(Message m)
           
 java.util.List<Interceptor> PolicyInterceptorProvider.provideOutFaultInterceptors(Message m)
           
 java.util.List<Interceptor> AbstractPolicyInterceptorProvider.provideOutInterceptors(Message m)
           
 java.util.List<Interceptor> PolicyInterceptorProvider.provideOutInterceptors(Message m)
           
 


Apache CXF API

Apache CXF