Spring Web Services Framework

org.springframework.ws.soap.addressing.server.annotation
Annotation Type Action


@Documented
@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface Action

Marks an endpoint method as the handler for an incoming request. The annotation value signifies the value for the request WS-Addressing Action header that is handled by the method.

Since:
1.5.0
Author:
Arjen Poutsma

Required Element Summary
 String value
          Signifies the value for the request WS-Addressing Action header that is handled by the method.
 
Optional Element Summary
 String fault
          Signifies the value for the fault response WS-Addressing Action header that is provided by the method.
 String output
          Signifies the value for the response WS-Addressing Action header that is provided by the method.
 

Element Detail

value

public abstract String value
Signifies the value for the request WS-Addressing Action header that is handled by the method.

output

public abstract String output
Signifies the value for the response WS-Addressing Action header that is provided by the method.

Default:
""

fault

public abstract String fault
Signifies the value for the fault response WS-Addressing Action header that is provided by the method.

Default:
""

Spring Web Services Framework

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