Spring Web Services Framework

Uses of Interface
org.springframework.ws.server.EndpointInterceptor

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
 

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 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.
 

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 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 PayloadValidatingInterceptor
          Interceptor that validates the contents of WebServiceMessages using a schema.
 class SoapEnvelopeLoggingInterceptor
          SOAP-specific EndpointInterceptor that logs the complete request and response envelope of SoapMessage messages.
 

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 SoapActionAnnotationMethodEndpointMapping.createEndpointInvocationChain(MessageContext messageContext, Object endpoint, EndpointInterceptor[] interceptors)
          Creates a new SoapEndpointInvocationChain based on the given endpoint, and the set interceptors, and actors/roles.
protected  EndpointInvocationChain SoapActionEndpointMapping.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

Copyright © 2005-2010 The Spring Web Services Framework. All Rights Reserved.