Package org.apache.cxf.interceptor
Interface Interceptor<T extends Message>
- 
- All Known Subinterfaces:
- OneWayInterceptor<T>,- PhaseInterceptor<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
 
 public interface Interceptor<T extends Message>Base interface for all interceptors.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleFault(T message)Called for all interceptors (in reverse order) on which handleMessage had been successfully invoked, when normal execution of the chain was aborted for some reason.voidhandleMessage(T message)Intercepts a message.
 
- 
- 
- 
Method Detail- 
handleMessagevoid handleMessage(T message) throws Fault Intercepts a message. Interceptors should NOT invoke handleMessage or handleFault on the next interceptor - the interceptor chain will take care of this.- Parameters:
- message-
- Throws:
- Fault
 
 - 
handleFaultvoid handleFault(T message) Called for all interceptors (in reverse order) on which handleMessage had been successfully invoked, when normal execution of the chain was aborted for some reason.- Parameters:
- message-
 
 
- 
 
-