diff --git a/core/src/main/java/org/springframework/ws/server/endpoint/MessageEndpoint.java b/core/src/main/java/org/springframework/ws/server/endpoint/MessageEndpoint.java index 508e33b1..e534e374 100644 --- a/core/src/main/java/org/springframework/ws/server/endpoint/MessageEndpoint.java +++ b/core/src/main/java/org/springframework/ws/server/endpoint/MessageEndpoint.java @@ -19,22 +19,23 @@ package org.springframework.ws.server.endpoint; import org.springframework.ws.context.MessageContext; /** - * Defines the basic contract for Web Services interested in the entire mesage payload. - *
- * The main entrypoint isinvoke, which gets invoked with the a message context. This context contains the
- * request, and can be used to create a response.
+ * Defines the basic contract for Web Services interested in the entire message payload.
+ *
+ * The main entrypoint is {@link #invoke(MessageContext)}, which gets invoked with the message context. This context + * contains the {@link MessageContext#getRequest() request}, and can be used to create a response. * * @author Arjen Poutsma - * @see #invoke(org.springframework.ws.context.MessageContext) + * @see org.springframework.ws.server.endpoint.PayloadEndpoint */ public interface MessageEndpoint { /** - * Invokes an operation. The given message context can be used to create a response. + * Invokes an operation. + * + *
The given messageContext can be used to create a response.
*
* @param messageContext the message context
* @throws Exception if an exception occurs
*/
void invoke(MessageContext messageContext) throws Exception;
-
}