Annotation Interface SoapAction
@Target(METHOD)
@Retention(RUNTIME)
@Documented
@Repeatable(SoapActions.class)
public @interface SoapAction
Marks an endpoint method as the handler for an incoming request. The annotation value
signifies the value for the request
SOAPAction
header that is handled by the
method.- Since:
- 1.0.0
- See Also:
-
Required Element Summary
Required Elements
-
Element Details
-
value
String valueSignifies the value for the requestSOAPAction
header that is handled by the method.
-