SWS-948 Fix typo (duplicated the)

This commit is contained in:
Uxio
2016-02-11 21:06:01 +01:00
committed by Greg Turnquist
parent 2be6c50c8f
commit 420e795607
10 changed files with 12 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
<html>
<body>
Provides DOM-based implementations of the the <code>MethodArgumentResolver</code> and
Provides DOM-based implementations of the <code>MethodArgumentResolver</code> and
<code>MethodReturnValueHandler</code> interfaces.
</body>
</html>

View File

@@ -24,7 +24,7 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Marks an endpoint method as the handler for an incoming request. The annotation values signify the the request
* Marks an endpoint method as the handler for an incoming request. The annotation values signify the request
* payload root element that is handled by the method.
*
* @author Arjen Poutsma

View File

@@ -50,7 +50,7 @@ public abstract class AbstractEndpointMapping extends ApplicationObjectSupport i
private SmartEndpointInterceptor[] smartInterceptors;
/**
* Returns the the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping.
* Returns the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping.
*
* @return array of endpoint interceptors, or {@code null} if none
*/

View File

@@ -93,7 +93,7 @@ public abstract class AbstractMapBasedEndpointMapping extends AbstractEndpointMa
protected abstract boolean validateLookupKey(String key);
/**
* Returns the the endpoint key for the given message context. Returns {@code null} if a key cannot be found.
* Returns the endpoint key for the given message context. Returns {@code null} if a key cannot be found.
*
* @return the registration key; or {@code null}
*/

View File

@@ -70,7 +70,7 @@ public abstract class AbstractMethodEndpointMapping<T> extends AbstractEndpointM
}
/**
* Returns the the endpoint keys for the given message context.
* Returns the endpoint keys for the given message context.
*
* @return the registration keys
*/
@@ -184,7 +184,7 @@ public abstract class AbstractMethodEndpointMapping<T> extends AbstractEndpointM
}
/**
* Returns the the endpoint key for the given method. Returns {@code null} if the method is not to be
* Returns the endpoint key for the given method. Returns {@code null} if the method is not to be
* registered, which is the default.
*
* @param method the method
@@ -196,7 +196,7 @@ public abstract class AbstractMethodEndpointMapping<T> extends AbstractEndpointM
}
/**
* Returns the the endpoint keys for the given method. Should return an empty array if the method is not to be
* Returns the endpoint keys for the given method. Should return an empty array if the method is not to be
* registered. The default delegates to {@link #getLookupKeysForMethod(Method)}.
*
* @param method the method

View File

@@ -57,7 +57,7 @@ import org.springframework.ws.transport.TransportInputStream;
* Axiom-specific implementation of the {@link org.springframework.ws.WebServiceMessageFactory WebServiceMessageFactory}
* interface. Creates {@link org.springframework.ws.soap.axiom.AxiomSoapMessage AxiomSoapMessages}.
*
* <p>To increase reading performance on the the SOAP request created by this message factory, you can set the {@link
* <p>To increase reading performance on the SOAP request created by this message factory, you can set the {@link
* #setPayloadCaching(boolean) payloadCaching} property to {@code false} (default is {@code true}). This this
* will read the contents of the body directly from the stream. However, <strong>when this setting is enabled, the
* payload can only be read once</strong>. This means that any endpoint mappings or interceptors which are based on the

View File

@@ -219,7 +219,7 @@ public class Wss4jSecurityInterceptor extends AbstractWsSecurityInterceptor impl
* value="{Content}{http://example.org/paymentv2}CreditCard;
* {Element}{}UserName" />
* </pre>
* The the first entry of the list identifies the element {@code CreditCard} in the namespace
* The first entry of the list identifies the element {@code CreditCard} in the namespace
* {@code http://example.org/paymentv2}, and will encrypt its content. Be aware that the element name, the
* namespace identifier, and the encryption modifier are case sensitive.
*

View File

@@ -217,7 +217,7 @@ public class Wss4jSecurityInterceptor extends AbstractWsSecurityInterceptor impl
* value="{Content}{http://example.org/paymentv2}CreditCard;
* {Element}{}UserName" />
* </pre>
* The the first entry of the list identifies the element {@code CreditCard} in the namespace
* The first entry of the list identifies the element {@code CreditCard} in the namespace
* {@code http://example.org/paymentv2}, and will encrypt its content. Be aware that the element name, the
* namespace identifier, and the encryption modifier are case sensitive.
*

View File

@@ -60,7 +60,7 @@ public class XmppConnectionFactoryBean implements FactoryBean<XMPPTCPConnection>
}
/**
* Sets the the server port to connect to.
* Sets the server port to connect to.
*
* <p>Defaults to {@code 5222}.
*/

View File

@@ -90,7 +90,7 @@ public class CommonsXsdSchema implements XsdSchema {
@Override
public Source getSource() {
// try to use the the package-friendly XmlSchemaSerializer first, fall back to slower stream-based version
// try to use the package-friendly XmlSchemaSerializer first, fall back to slower stream-based version
try {
XmlSchemaSerializer serializer = BeanUtils.instantiateClass(XmlSchemaSerializer.class);
if (collection != null) {