Added @since tags.

This commit is contained in:
Arjen Poutsma
2007-08-16 22:41:08 +00:00
parent 278e1760f1
commit 98a1db0f99
11 changed files with 11 additions and 0 deletions

View File

@@ -55,6 +55,7 @@ import org.w3c.dom.NodeList;
* Double}</li> <li>{@link String}</li> <li>{@link Node}</li> <li>{@link NodeList}</li> </ul>
*
* @author Arjen Poutsma
* @since 1.0
*/
public class XPathParamAnnotationMethodEndpointAdapter extends AbstractMethodEndpointAdapter
implements InitializingBean {

View File

@@ -32,6 +32,7 @@ import org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationM
* such as {@link SoapActionAnnotationMethodEndpointMapping}.
*
* @author Arjen Poutsma
* @since 1.0
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)

View File

@@ -28,6 +28,7 @@ import java.lang.annotation.Target;
*
* @author Arjen Poutsma
* @see org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping
* @since 1.0
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)

View File

@@ -29,6 +29,7 @@ import java.lang.annotation.Target;
*
* @author Arjen Poutsma
* @see org.springframework.ws.server.endpoint.adapter.XPathParamAnnotationMethodEndpointAdapter
* @since 1.0
*/
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)

View File

@@ -29,6 +29,7 @@ import org.springframework.ws.server.endpoint.annotation.Endpoint;
* The methods of each bean carrying @Endpoint will be registered using {@link #registerMethods(Object)}.
*
* @author Arjen Poutsma
* @since 1.0
*/
public abstract class AbstractAnnotationMethodEndpointMapping extends AbstractMethodEndpointMapping
implements BeanPostProcessor {

View File

@@ -43,6 +43,7 @@ import org.springframework.ws.server.endpoint.support.PayloadRootUtils;
* </pre>
*
* @author Arjen Poutsma
* @since 1.0
*/
public class PayloadRootAnnotationMethodEndpointMapping extends AbstractAnnotationMethodEndpointMapping {

View File

@@ -27,6 +27,7 @@ import org.springframework.ws.soap.server.endpoint.annotation.SoapFault;
* SoapFault} annotation to map exceptions to SOAP Faults.
*
* @author Arjen Poutsma
* @since 1.0
*/
public class SoapFaultAnnotationExceptionResolver extends AbstractSoapFaultDefinitionExceptionResolver {

View File

@@ -25,6 +25,7 @@ import org.springframework.ws.soap.soap11.Soap11Body;
* Enumeration that represents the standard SOAP Fault codes for use with the JDK 1.5+ {@link SoapFault} annotation.
*
* @author Arjen Poutsma
* @since 1.0
*/
public enum FaultCode {

View File

@@ -28,6 +28,7 @@ import java.lang.annotation.Target;
*
* @author Arjen Poutsma
* @see org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping
* @since 1.0
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)

View File

@@ -29,6 +29,7 @@ import javax.xml.namespace.QName;
*
* @author Arjen Poutsma
* @see org.springframework.ws.soap.server.endpoint.SoapFaultAnnotationExceptionResolver
* @since 1.0
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)

View File

@@ -45,6 +45,7 @@ import org.springframework.ws.soap.server.endpoint.annotation.SoapAction;
* </pre>
*
* @author Arjen Poutsma
* @since 1.0
*/
public class SoapActionAnnotationMethodEndpointMapping extends AbstractAnnotationMethodEndpointMapping
implements SoapEndpointMapping {