Class SoapActionAnnotationMethodEndpointMapping

All Implemented Interfaces:
org.springframework.beans.factory.Aware, org.springframework.context.ApplicationContextAware, org.springframework.core.Ordered, EndpointMapping, SoapEndpointMapping

public class SoapActionAnnotationMethodEndpointMapping extends AbstractAnnotationMethodEndpointMapping<String> implements SoapEndpointMapping
Implementation of the EndpointMapping interface that uses the SoapAction annotation to map methods to the request SOAPAction header.

Endpoints typically have the following form:

 @Endpoint
 public class MyEndpoint{
          @SoapAction("http://springframework.org/spring-ws/SoapAction")
          public Source doSomethingWithRequest() {
                 ...
          }
 }
 
Since:
1.0.0
Author:
Arjen Poutsma