Uses of Interface
org.springframework.ws.server.EndpointInterceptor
Package
Description
Contains classes for server-side Spring-WS support.
Provides standard endpoint, and
EndpointAdapter
implementations.Provides miscellaneous endpoints
EndpointInterceptor
implementations.Provides miscellaneous endpoints
EndpointMapping
implementations.Contains servers-side WS-Addressing support, in the form of
EndpointMappings
.Provides WS-Security implementation classes.
Contains classes for using the Apache WSS4J 2.0 WS-Security implementation
within
Spring-WS.
Contains classes for SOAP-specific server-side Spring-WS support.
Provides miscellaneous endpoints
EndpointInterceptor
implementations for SOAP purposes.Provides miscellaneous endpoints
EndpointMapping
implementations for SOAP purposes.-
Uses of EndpointInterceptor in org.springframework.ws.config.annotation
Modifier and TypeMethodDescriptionprotected final EndpointInterceptor[]
WsConfigurationSupport.getInterceptors()
Provide access to the shared handler interceptors used to configureEndpointMapping
instances with.Modifier and TypeMethodDescriptionprotected void
DelegatingWsConfiguration.addInterceptors
(List<EndpointInterceptor> interceptors) protected void
WsConfigurationSupport.addInterceptors
(List<EndpointInterceptor> interceptors) Template method to add endpoint interceptors.void
WsConfigurer.addInterceptors
(List<EndpointInterceptor> interceptors) AddEndpointInterceptor
s for pre- and post-processing of endpoint method invocations.void
WsConfigurerAdapter.addInterceptors
(List<EndpointInterceptor> interceptors) AddEndpointInterceptor
s for pre- and post-processing of endpoint method invocations.void
WsConfigurerComposite.addInterceptors
(List<EndpointInterceptor> interceptors) -
Uses of EndpointInterceptor in org.springframework.ws.server
Modifier and TypeInterfaceDescriptioninterface
Extension of theEndpointInterceptor
interface that adds a way to decide whether the interceptor should intercept a given message context.Modifier and TypeMethodDescriptionEndpointInvocationChain.getInterceptors()
Returns the array of interceptors to apply before the handler executes.ModifierConstructorDescriptionEndpointInvocationChain
(Object endpoint, EndpointInterceptor[] interceptors) Create newEndpointInvocationChain
. -
Uses of EndpointInterceptor in org.springframework.ws.server.endpoint
Modifier and TypeClassDescriptionclass
Abstract base class forEndpointInterceptor
instances that log a part of aWebServiceMessage
. -
Uses of EndpointInterceptor in org.springframework.ws.server.endpoint.interceptor
Modifier and TypeClassDescriptionclass
Abstract base class forEndpointInterceptor
implementations that validate part of the message using a schema.class
Implementation of theSmartEndpointInterceptor
interface that delegates to a delegateEndpointInterceptor
.class
Default implementation of theEndpointInterceptor
interface, for simplified implementation of pre-only/post-only interceptors.class
SimpleEndpointInterceptor
that logs the payload of request and response messages.class
Interceptor that transforms the payload ofWebServiceMessage
s using XSLT stylesheet.Modifier and TypeMethodDescriptionDelegatingSmartEndpointInterceptor.getDelegate()
Returns the delegate.ModifierConstructorDescriptionCreates a new instance of theDelegatingSmartEndpointInterceptor
with the given delegate. -
Uses of EndpointInterceptor in org.springframework.ws.server.endpoint.mapping
Modifier and TypeMethodDescriptionAbstractEndpointMapping.getInterceptors()
Returns the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping.Modifier and TypeMethodDescriptionprotected EndpointInvocationChain
AbstractEndpointMapping.createEndpointInvocationChain
(MessageContext messageContext, Object endpoint, EndpointInterceptor[] interceptors) Creates a newEndpointInvocationChain
based on the given message context, endpoint, and interceptors.final void
AbstractEndpointMapping.setInterceptors
(EndpointInterceptor[] interceptors) Sets the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping. -
Uses of EndpointInterceptor in org.springframework.ws.soap.addressing.server
Modifier and TypeMethodDescriptionfinal void
AbstractAddressingEndpointMapping.setPostInterceptors
(EndpointInterceptor[] postInterceptors) Set additional interceptors to be applied after the implicit WS-Addressing interceptor, e.g.final void
AbstractAddressingEndpointMapping.setPreInterceptors
(EndpointInterceptor[] preInterceptors) Set additional interceptors to be applied before the implicit WS-Addressing interceptor, e.g. -
Uses of EndpointInterceptor in org.springframework.ws.soap.security
Modifier and TypeClassDescriptionclass
Interceptor base class for interceptors that handle WS-Security. -
Uses of EndpointInterceptor in org.springframework.ws.soap.security.wss4j2
Modifier and TypeClassDescriptionclass
A WS-Security endpoint interceptor based on Apache's WSS4J. -
Uses of EndpointInterceptor in org.springframework.ws.soap.server
Modifier and TypeInterfaceDescriptioninterface
SOAP-specific extension of theSmartEndpointInterceptor
interface.interface
SOAP-specific extension of theEndpointInterceptor
interface.ModifierConstructorDescriptionSoapEndpointInvocationChain
(Object endpoint, EndpointInterceptor[] interceptors) Create newSoapEndpointInvocationChain
.SoapEndpointInvocationChain
(Object endpoint, EndpointInterceptor[] interceptors, String[] actorsOrRoles, boolean isUltimateReceiver) Create newEndpointInvocationChain
. -
Uses of EndpointInterceptor in org.springframework.ws.soap.server.endpoint.interceptor
Modifier and TypeClassDescriptionclass
Subclass ofAbstractValidatingInterceptor
that creates a SOAP Fault whenever the request message cannot be validated.class
Implementation of theSmartSoapEndpointInterceptor
interface that delegates to a delegateSoapEndpointInterceptor
.class
Implementation of theSmartSoapEndpointInterceptor
interface that only intercepts requests that have a specified namespace URI or local part (or both) as payload root.class
Interceptor that validates the contents ofWebServiceMessage
s using a schema.class
Implementation of theSmartEndpointInterceptor
interface that only intercepts requests that have a specified soap action.class
SOAP-specificEndpointInterceptor
that logs the complete request and response envelope ofSoapMessage
messages.ModifierConstructorDescriptionCreates a new instance of theDelegatingSmartSoapEndpointInterceptor
with the given delegate.PayloadRootSmartSoapEndpointInterceptor
(EndpointInterceptor delegate, String namespaceUri, String localPart) SoapActionSmartEndpointInterceptor
(EndpointInterceptor delegate, String soapAction) -
Uses of EndpointInterceptor in org.springframework.ws.soap.server.endpoint.mapping
Modifier and TypeMethodDescriptionprotected final EndpointInvocationChain
SoapActionAnnotationMethodEndpointMapping.createEndpointInvocationChain
(MessageContext messageContext, Object endpoint, EndpointInterceptor[] interceptors) Creates a newSoapEndpointInvocationChain
based on the given endpoint, and the set interceptors, and actors/roles.protected final EndpointInvocationChain
SoapActionEndpointMapping.createEndpointInvocationChain
(MessageContext messageContext, Object endpoint, EndpointInterceptor[] interceptors) Creates a newSoapEndpointInvocationChain
based on the given endpoint, and the set interceptors, and actors/roles.