Fixing javadoc

This commit is contained in:
Arjen Poutsma
2014-04-16 17:30:39 +02:00
parent 124675ba78
commit bbc6bf5f60
327 changed files with 2901 additions and 2292 deletions

View File

@@ -24,8 +24,8 @@ import org.springframework.ws.WebServiceMessageFactory;
/**
* Abstract base class for the {@link ResponseCreator} interface.
* <p/>
* Creates a response using the given {@link WebServiceMessageFactory}, and passes it on to {@link #doWithResponse(URI,
*
* <p>Creates a response using the given {@link WebServiceMessageFactory}, and passes it on to {@link #doWithResponse(URI,
* WebServiceMessage, WebServiceMessage)}.
*
* @author Arjen Poutsma

View File

@@ -25,8 +25,8 @@ import org.springframework.ws.test.support.MockStrategiesHelper;
/**
* <strong>Main entry point for client-side Web service testing</strong>. Typically used to test a {@link
* WebServiceTemplate}, set up expectations on request messages, and create response messages.
* <p/>
* The typical usage of this class is:
*
* <p>The typical usage of this class is:
* <ol>
* <li>Create a {@code MockWebServiceServer} instance by calling {@link #createServer(WebServiceTemplate)},
* {@link #createServer(WebServiceGatewaySupport)}, or {@link #createServer(ApplicationContext)}.
@@ -40,8 +40,8 @@ import org.springframework.ws.test.support.MockStrategiesHelper;
* <li>Call {@link #verify()}.</ol>
* Note that because of the 'fluent' API offered by this class (and related classes), you can typically use the Code
* Completion features (i.e. ctrl-space) in your IDE to set up the mocks.
* <p/>
* For example:
*
* <p>For example:
* <blockquote><pre>
* import org.junit.*;
* import org.springframework.beans.factory.annotation.Autowired;
@@ -127,8 +127,8 @@ public class MockWebServiceServer {
/**
* Creates a {@code MockWebServiceServer} instance based on the given {@link ApplicationContext}.
* <p/>
* This factory method will try and find a configured {@link WebServiceTemplate} in the given application context.
*
* <p>This factory method will try and find a configured {@link WebServiceTemplate} in the given application context.
* If no template can be found, it will try and find a {@link WebServiceGatewaySupport}, and use its configured
* template. If neither can be found, an exception is thrown.
*

View File

@@ -18,8 +18,8 @@ package org.springframework.ws.test.client;
/**
* Allows for setting up expectations on XPath expressions.
* <p/>
* Implementations of this interface are returned by {@link RequestMatchers#xpath(String)} and {@link
*
* <p>Implementations of this interface are returned by {@link RequestMatchers#xpath(String)} and {@link
* RequestMatchers#xpath(String, java.util.Map)}, as part of the fluent API. As such, it is not typical to implement this
* interface yourself.
*

View File

@@ -37,8 +37,8 @@ import org.springframework.ws.transport.WebServiceMessageReceiver;
* <strong>Main entry point for server-side Web service testing</strong>. Typically used to test a {@link
* org.springframework.ws.server.MessageDispatcher MessageDispatcher} (including its endpoints, mappings, etc) by
* creating request messages, and setting up expectations about response messages.
* <p/>
* The typical usage of this class is:
*
* <p>The typical usage of this class is:
* <ol>
* <li>Create a {@code MockWebServiceClient} instance by using {@link #createClient(ApplicationContext)} or
* {@link #createClient(WebServiceMessageReceiver, WebServiceMessageFactory)}</li>
@@ -50,8 +50,8 @@ import org.springframework.ws.transport.WebServiceMessageReceiver;
* </ol>
* Note that because of the 'fluent' API offered by this class (and related classes), you can typically use the Code
* Completion features (i.e. ctrl-space) in your IDE to set up the mocks.
* <p/>
* For example:
*
* <p>For example:
* <blockquote><pre>
* import org.junit.*;
* import org.springframework.beans.factory.annotation.Autowired;

View File

@@ -18,8 +18,8 @@ package org.springframework.ws.test.server;
/**
* Allows for setting up expectations on XPath expressions.
* <p/>
* Implementations of this interface are returned by {@link org.springframework.ws.test.client.RequestMatchers#xpath(String)} and {@link
*
* <p>Implementations of this interface are returned by {@link org.springframework.ws.test.client.RequestMatchers#xpath(String)} and {@link
* org.springframework.ws.test.client.RequestMatchers#xpath(String, java.util.Map)}, as part of the fluent API. As such, it is not typical to implement this
* interface yourself.
*

View File

@@ -23,8 +23,8 @@ import org.springframework.ws.WebServiceMessageFactory;
/**
* Abstract base class for the {@link WebServiceMessageCreator} interface.
* <p/>
* Creates a message using the given {@link WebServiceMessageFactory}, and passes it on to {@link
*
* <p>Creates a message using the given {@link WebServiceMessageFactory}, and passes it on to {@link
* #doWithMessage(WebServiceMessage)}.
*
* @author Arjen Poutsma

View File

@@ -25,8 +25,8 @@ import org.springframework.ws.soap.SoapMessage;
/**
* Abstract base class for SOAP-specific {@link WebServiceMessageMatcher} implementations.
* <p/>
* Asserts that the message given to {@link #match(WebServiceMessage)} is a {@link SoapMessage}, and invokes {@link
*
* <p>Asserts that the message given to {@link #match(WebServiceMessage)} is a {@link SoapMessage}, and invokes {@link
* #match(SoapMessage)} with it if so.
*
* @author Arjen Poutsma