|
Spring Web Services Framework | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use EndpointInterceptor | |
|---|---|
| org.springframework.ws.server | Contains classes for server-side Spring-WS support. |
| org.springframework.ws.server.endpoint | Provides standard endpoint, and EndpointAdapter implementations. |
| org.springframework.ws.server.endpoint.interceptor | Provides miscellaneous endpoints EndpointInterceptor implementations. |
| org.springframework.ws.server.endpoint.mapping | Provides miscellaneous endpoints EndpointMapping implementations. |
| org.springframework.ws.soap.addressing.server | Contains servers-side WS-Addressing support, in the form of EndpointMappings. |
| org.springframework.ws.soap.security | Provides WS-Security implementation classes. |
| org.springframework.ws.soap.security.wss4j | Contains classes for using the Apache WSS4J WS-Security implementation within Spring-WS. |
| org.springframework.ws.soap.security.xwss | Contains classes for using the XML and WebServices Security WS-Security implementation within Spring-WS. |
| org.springframework.ws.soap.server | Contains classes for SOAP-specific server-side Spring-WS support. |
| org.springframework.ws.soap.server.endpoint.interceptor | Provides miscellaneous endpoints EndpointInterceptor implementations for SOAP purposes. |
| org.springframework.ws.soap.server.endpoint.mapping | Provides miscellaneous endpoints EndpointMapping implementations for SOAP purposes. |
| Uses of EndpointInterceptor in org.springframework.ws.server |
|---|
| Subinterfaces of EndpointInterceptor in org.springframework.ws.server | |
|---|---|
interface |
SmartEndpointInterceptor
Extension of the EndpointInterceptor interface that adds a way to
decide whether the interceptor should intercept a given message context. |
| Methods in org.springframework.ws.server that return EndpointInterceptor | |
|---|---|
EndpointInterceptor[] |
EndpointInvocationChain.getInterceptors()
Returns the array of interceptors to apply before the handler executes. |
| Constructors in org.springframework.ws.server with parameters of type EndpointInterceptor | |
|---|---|
EndpointInvocationChain(Object endpoint,
EndpointInterceptor[] interceptors)
Create new EndpointInvocationChain. |
|
| Uses of EndpointInterceptor in org.springframework.ws.server.endpoint |
|---|
| Classes in org.springframework.ws.server.endpoint that implement EndpointInterceptor | |
|---|---|
class |
AbstractLoggingInterceptor
Abstract base class for EndpointInterceptor instances that log a part of a
WebServiceMessage. |
| Uses of EndpointInterceptor in org.springframework.ws.server.endpoint.interceptor |
|---|
| Classes in org.springframework.ws.server.endpoint.interceptor that implement EndpointInterceptor | |
|---|---|
class |
AbstractValidatingInterceptor
Abstract base class for EndpointInterceptor implementations that validate part of the message using a
schema. |
class |
DelegatingSmartEndpointInterceptor
Implementation of the SmartEndpointInterceptor interface that delegates to a delegate EndpointInterceptor. |
class |
EndpointInterceptorAdapter
Default implementation of the EndpointInterceptor interface, for simplified implementation of
pre-only/post-only interceptors. |
class |
PayloadLoggingInterceptor
Simple EndpointInterceptor that logs the payload of request
and response messages. |
class |
PayloadTransformingInterceptor
Interceptor that transforms the payload of WebServiceMessages using XSLT stylesheet. |
| Methods in org.springframework.ws.server.endpoint.interceptor that return EndpointInterceptor | |
|---|---|
EndpointInterceptor |
DelegatingSmartEndpointInterceptor.getDelegate()
Returns the delegate. |
| Constructors in org.springframework.ws.server.endpoint.interceptor with parameters of type EndpointInterceptor | |
|---|---|
DelegatingSmartEndpointInterceptor(EndpointInterceptor delegate)
Creates a new instance of the DelegatingSmartEndpointInterceptor with the given delegate. |
|
| Uses of EndpointInterceptor in org.springframework.ws.server.endpoint.mapping |
|---|
| Methods in org.springframework.ws.server.endpoint.mapping that return EndpointInterceptor | |
|---|---|
EndpointInterceptor[] |
AbstractEndpointMapping.getInterceptors()
Returns the the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping. |
| Methods in org.springframework.ws.server.endpoint.mapping with parameters of type EndpointInterceptor | |
|---|---|
protected EndpointInvocationChain |
AbstractEndpointMapping.createEndpointInvocationChain(MessageContext messageContext,
Object endpoint,
EndpointInterceptor[] interceptors)
Creates a new EndpointInvocationChain based on the given message context, endpoint, and
interceptors. |
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 |
|---|
| Methods in org.springframework.ws.soap.addressing.server with parameters of type EndpointInterceptor | |
|---|---|
void |
AbstractAddressingEndpointMapping.setPostInterceptors(EndpointInterceptor[] postInterceptors)
Set additional interceptors to be applied after the implicit WS-Addressing interceptor, e.g. |
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 |
|---|
| Classes in org.springframework.ws.soap.security that implement EndpointInterceptor | |
|---|---|
class |
AbstractWsSecurityInterceptor
Interceptor base class for interceptors that handle WS-Security. |
| Uses of EndpointInterceptor in org.springframework.ws.soap.security.wss4j |
|---|
| Classes in org.springframework.ws.soap.security.wss4j that implement EndpointInterceptor | |
|---|---|
class |
Wss4jSecurityInterceptor
A WS-Security endpoint interceptor based on Apache's WSS4J. |
| Uses of EndpointInterceptor in org.springframework.ws.soap.security.xwss |
|---|
| Classes in org.springframework.ws.soap.security.xwss that implement EndpointInterceptor | |
|---|---|
class |
XwsSecurityInterceptor
WS-Security endpoint interceptor that is based on Sun's XML and Web Services Security package (XWSS). |
| Uses of EndpointInterceptor in org.springframework.ws.soap.server |
|---|
| Subinterfaces of EndpointInterceptor in org.springframework.ws.soap.server | |
|---|---|
interface |
SmartSoapEndpointInterceptor
SOAP-specific extension of the SmartEndpointInterceptor interface. |
interface |
SoapEndpointInterceptor
SOAP-specific extension of the EndpointInterceptor interface. |
| Constructors in org.springframework.ws.soap.server with parameters of type EndpointInterceptor | |
|---|---|
SoapEndpointInvocationChain(Object endpoint,
EndpointInterceptor[] interceptors)
Create new SoapEndpointInvocationChain. |
|
SoapEndpointInvocationChain(Object endpoint,
EndpointInterceptor[] interceptors,
String[] actorsOrRoles,
boolean isUltimateReceiver)
Create new EndpointInvocationChain. |
|
| Uses of EndpointInterceptor in org.springframework.ws.soap.server.endpoint.interceptor |
|---|
| Classes in org.springframework.ws.soap.server.endpoint.interceptor that implement EndpointInterceptor | |
|---|---|
class |
AbstractFaultCreatingValidatingInterceptor
Subclass of AbstractValidatingInterceptor that creates a SOAP Fault whenever the request message cannot
be validated. |
class |
DelegatingSmartSoapEndpointInterceptor
Implementation of the SmartSoapEndpointInterceptor interface that delegates to a delegate SoapEndpointInterceptor. |
class |
PayloadRootSmartSoapEndpointInterceptor
Implementation of the SmartSoapEndpointInterceptor interface that only intercepts requests that have a specified namespace URI or local
part (or both) as payload root. |
class |
PayloadValidatingInterceptor
Interceptor that validates the contents of WebServiceMessages using a schema. |
class |
SoapActionSmartEndpointInterceptor
Implementation of the SmartEndpointInterceptor interface that only intercepts
requests that have a specified soap action. |
class |
SoapEnvelopeLoggingInterceptor
SOAP-specific EndpointInterceptor that logs the complete request and response envelope of
SoapMessage messages. |
| Constructors in org.springframework.ws.soap.server.endpoint.interceptor with parameters of type EndpointInterceptor | |
|---|---|
DelegatingSmartSoapEndpointInterceptor(EndpointInterceptor delegate)
Creates a new instance of the DelegatingSmartSoapEndpointInterceptor 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 |
|---|
| Methods in org.springframework.ws.soap.server.endpoint.mapping with parameters of type EndpointInterceptor | |
|---|---|
protected EndpointInvocationChain |
SoapActionEndpointMapping.createEndpointInvocationChain(MessageContext messageContext,
Object endpoint,
EndpointInterceptor[] interceptors)
Deprecated. Creates a new SoapEndpointInvocationChain based on the given endpoint, and the set interceptors, and
actors/roles. |
protected EndpointInvocationChain |
SoapActionAnnotationMethodEndpointMapping.createEndpointInvocationChain(MessageContext messageContext,
Object endpoint,
EndpointInterceptor[] interceptors)
Creates a new SoapEndpointInvocationChain based on the given endpoint, and the set interceptors, and
actors/roles. |
|
Spring Web Services Framework | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||