From 73d90ed53ac90927bdece29294549a602fe2380f Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Thu, 6 Oct 2011 10:12:17 +0000 Subject: [PATCH] Javadoc. --- .../mapping/AbstractMethodEndpointMapping.java | 10 +++++----- .../server/AddressingEndpointInterceptor.java | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMethodEndpointMapping.java b/core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMethodEndpointMapping.java index 073d0072..4957c893 100644 --- a/core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMethodEndpointMapping.java +++ b/core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMethodEndpointMapping.java @@ -1,11 +1,11 @@ /* - * Copyright 2005-2010 the original author or authors. + * Copyright 2005-2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -34,7 +34,7 @@ import org.springframework.ws.server.endpoint.MethodEndpoint; *

* Subclasses typically implement {@link org.springframework.beans.factory.config.BeanPostProcessor} to look for beans * that qualify as endpoint. The methods of this bean are then registered under a specific key with {@link - * #registerEndpoint(String,MethodEndpoint)}. + * #registerEndpoint(Object, MethodEndpoint)}. * * @author Arjen Poutsma * @since 1.0.0 @@ -104,7 +104,7 @@ public abstract class AbstractMethodEndpointMapping extends AbstractEndpointM /** * Helper method that registers the methods of the given bean. This method iterates over the methods of the bean, * and calls {@link #getLookupKeyForMethod(Method)} for each. If this returns a string, the method is registered - * using {@link #registerEndpoint(T,MethodEndpoint)}. + * using {@link #registerEndpoint(Object, MethodEndpoint)}. * * @see #getLookupKeyForMethod(Method) */ @@ -125,7 +125,7 @@ public abstract class AbstractMethodEndpointMapping extends AbstractEndpointM /** * Helper method that registers the methods of the given class. This method iterates over the methods of the class, * and calls {@link #getLookupKeyForMethod(Method)} for each. If this returns a string, the method is registered - * using {@link #registerEndpoint(String,MethodEndpoint)}. + * using {@link #registerEndpoint(Object, MethodEndpoint)}. * * @see #getLookupKeyForMethod(Method) */ diff --git a/core/src/main/java/org/springframework/ws/soap/addressing/server/AddressingEndpointInterceptor.java b/core/src/main/java/org/springframework/ws/soap/addressing/server/AddressingEndpointInterceptor.java index f59071c6..15ba4689 100644 --- a/core/src/main/java/org/springframework/ws/soap/addressing/server/AddressingEndpointInterceptor.java +++ b/core/src/main/java/org/springframework/ws/soap/addressing/server/AddressingEndpointInterceptor.java @@ -35,7 +35,7 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** - * {@link SoapEndpointInterceptor} implementation that deals with WS-Addressing headers. Stateful, and instatiated by + * {@link SoapEndpointInterceptor} implementation that deals with WS-Addressing headers. Stateful, and instantiated by * the {@link AbstractAddressingEndpointMapping}. * * @author Arjen Poutsma