From c026c56bb9d07e61194789f3203ac217eddba8e0 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Fri, 22 Feb 2008 12:41:23 +0000 Subject: [PATCH] Javadoc --- .../ws/soap/server/endpoint/annotation/SoapAction.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core-tiger/src/main/java/org/springframework/ws/soap/server/endpoint/annotation/SoapAction.java b/core-tiger/src/main/java/org/springframework/ws/soap/server/endpoint/annotation/SoapAction.java index b0d52e45..45c8e88a 100644 --- a/core-tiger/src/main/java/org/springframework/ws/soap/server/endpoint/annotation/SoapAction.java +++ b/core-tiger/src/main/java/org/springframework/ws/soap/server/endpoint/annotation/SoapAction.java @@ -24,7 +24,7 @@ import java.lang.annotation.Target; /** * 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. + * request SOAPAction header that is handled by the method. * * @author Arjen Poutsma * @see org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping @@ -35,6 +35,7 @@ import java.lang.annotation.Target; @Documented public @interface SoapAction { + /** Signifies the value for the request SOAPAction header that is handled by the method. */ String value(); }