Package org.apache.cxf.phase
Interface PhaseInterceptor<T extends Message>
- All Superinterfaces:
- Interceptor<T>
- All Known Implementing Classes:
- AbstractAuthorizingInInterceptor,- AbstractBeanValidationInterceptor,- AbstractInDatabindingInterceptor,- AbstractLoggingInterceptor,- AbstractOutDatabindingInterceptor,- AbstractPhaseInterceptor,- AbstractSecurityContextInInterceptor,- AbstractUsernameTokenInInterceptor,- AbstractValidationInterceptor,- AbstractXSLTInterceptor,- AttachmentInInterceptor,- AttachmentOutInterceptor,- AttachmentOutInterceptor.AttachmentOutEndingInterceptor,- BeanValidationInInterceptor,- BeanValidationOutInterceptor,- ClientBeanValidationOutInterceptor,- ClientFaultConverter,- DelegatingAuthenticationInterceptor,- DepthRestrictingStreamInterceptor,- FaultOutInterceptor,- FIStaxInInterceptor,- FIStaxOutInterceptor,- GZIPInInterceptor,- GZIPOutInterceptor,- JAASLoginInterceptor,- LoggingInInterceptor,- LoggingOutInterceptor,- MAPAggregator,- MessageSenderInterceptor,- MessageSenderInterceptor.MessageSenderEndingInterceptor,- OneWayProcessorInterceptor,- OperationInfoAuthorizingInterceptor,- OutgoingChainInterceptor,- SecureAnnotationsInterceptor,- ServiceInvokerInterceptor,- SimpleAuthorizingInterceptor,- StaxDataBindingInterceptor,- StaxInEndingInterceptor,- StaxInInterceptor,- StaxOutEndingInterceptor,- StaxOutInterceptor,- StaxSchemaValidationInInterceptor,- StaxSchemaValidationOutInterceptor,- TransformInInterceptor,- TransformOutInterceptor,- XSLTInInterceptor,- XSLTOutInterceptor
A phase interceptor is an intercetor that participates in a
 PhaseInterceptorChain.
 The phase property controls the phase in which the interceptor is placed.
 The before and after properties allow for fine grained control over where
 the phase the interceptor is placed. They specify the IDs of the
 interceptors that must be placed before and after the interceptor.
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionCollection<PhaseInterceptor<? extends Message>>Returns a collection of Interceptors that should be added to the chain whenever this interceptor is added.getAfter()Returns a set containing the IDs of the interceptors that should be executed before this interceptor.Returns a set containing the IDs of the interceptors that should be executed after this interceptor.getId()Returns the ID of this interceptor.getPhase()Returns the phase in which this interceptor is excecuted.Methods inherited from interface org.apache.cxf.interceptor.InterceptorhandleFault, handleMessage
- 
Method Details- 
getAfterReturns a set containing the IDs of the interceptors that should be executed before this interceptor. This interceptor will be placed in the chain after the interceptors in the set.- Returns:
- the IDs of the interceptors
 
- 
getBeforeReturns a set containing the IDs of the interceptors that should be executed after this interceptor. This interceptor will be placed in the inteceptor chain before the interceptors in the set.- Returns:
- the ids of the interceptors
 
- 
getIdString getId()Returns the ID of this interceptor.- Returns:
- the ID
 
- 
getPhaseString getPhase()Returns the phase in which this interceptor is excecuted.- Returns:
- the phase
 
- 
getAdditionalInterceptorsCollection<PhaseInterceptor<? extends Message>> getAdditionalInterceptors()Returns a collection of Interceptors that should be added to the chain whenever this interceptor is added. May return null.- Returns:
- the collection of interceptors
 
 
-