From 53307261795b5b08e80cafdedb75a5cc0312b904 Mon Sep 17 00:00:00 2001 From: Rick Evans Date: Sat, 14 Apr 2007 12:01:15 +0000 Subject: [PATCH] Corrected Javadoc grammar ('with the a message') --- .../ws/server/endpoint/MessageEndpoint.java | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) 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 is invoke, 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; - }