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
- Author:
- Arjen Poutsma
- See Also:
-
Required Element Summary
-
Element Details
-
value
String valueSignifies the value for the requestSOAPAction
header that is handled by the method.
-