Reorder Javadoc tags consistently
See gh-1479
This commit is contained in:
@@ -24,8 +24,8 @@ import javax.xml.namespace.QName;
|
||||
* often require different processing rules.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.soap.SoapMessage
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.soap.SoapMessage
|
||||
*/
|
||||
public interface FaultAwareWebServiceMessage extends WebServiceMessage {
|
||||
|
||||
|
||||
@@ -28,9 +28,9 @@ import javax.xml.transform.Source;
|
||||
* Contains methods that provide access to the payload of the message.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.soap.SoapMessage
|
||||
* @see WebServiceMessageFactory
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public interface WebServiceMessage {
|
||||
|
||||
|
||||
@@ -26,8 +26,8 @@ import java.io.InputStream;
|
||||
* Allows the creation of empty messages, or messages based on {@code InputStream}s.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.WebServiceMessage
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.WebServiceMessage
|
||||
*/
|
||||
public interface WebServiceMessageFactory {
|
||||
|
||||
|
||||
@@ -25,8 +25,8 @@ import org.springframework.ws.client.WebServiceFaultException;
|
||||
* fault occurs.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see WebServiceFaultException
|
||||
* @since 1.0.0
|
||||
* @see WebServiceFaultException
|
||||
*/
|
||||
public class SimpleFaultMessageResolver implements FaultMessageResolver {
|
||||
|
||||
|
||||
@@ -35,8 +35,8 @@ import javax.xml.transform.TransformerException;
|
||||
* don't need to worry about exception handling, or resource handling.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.client.core.WebServiceTemplate
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.client.core.WebServiceTemplate
|
||||
*/
|
||||
public interface SourceExtractor<T> {
|
||||
|
||||
|
||||
@@ -28,8 +28,8 @@ import org.springframework.ws.client.WebServiceClientException;
|
||||
* testability, as it can easily be mocked or stubbed.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see WebServiceTemplate
|
||||
* @since 1.0.0
|
||||
* @see WebServiceTemplate
|
||||
*/
|
||||
public interface WebServiceOperations {
|
||||
|
||||
|
||||
@@ -50,10 +50,10 @@ import org.springframework.ws.transport.WebServiceMessageSender;
|
||||
* directly.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #setMessageFactory(WebServiceMessageFactory)
|
||||
* @see WebServiceTemplate
|
||||
* @see #setMarshaller(Marshaller)
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public abstract class WebServiceGatewaySupport implements InitializingBean {
|
||||
|
||||
|
||||
@@ -36,8 +36,8 @@ import org.springframework.xml.transform.TransformerObjectSupport;
|
||||
* {@link org.springframework.ws.client.core.WebServiceTemplate}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.client.core.WebServiceTemplate
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.client.core.WebServiceTemplate
|
||||
*/
|
||||
public abstract class WebServiceAccessor extends TransformerObjectSupport implements InitializingBean {
|
||||
|
||||
|
||||
@@ -27,8 +27,8 @@ import java.net.URI;
|
||||
* to determine the destination URI.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.client.core.WebServiceTemplate#setDestinationProvider(DestinationProvider)
|
||||
* @since 1.5.4
|
||||
* @see org.springframework.ws.client.core.WebServiceTemplate#setDestinationProvider(DestinationProvider)
|
||||
*/
|
||||
public interface DestinationProvider {
|
||||
|
||||
|
||||
@@ -47,9 +47,9 @@ import org.springframework.xml.xsd.XsdSchemaCollection;
|
||||
* using the {@code validateRequest} and {@code validateResponse} properties.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.5.4
|
||||
* @see #getValidationRequestSource(WebServiceMessage)
|
||||
* @see #getValidationResponseSource(WebServiceMessage)
|
||||
* @since 1.5.4
|
||||
*/
|
||||
public abstract class AbstractValidatingInterceptor extends TransformerObjectSupport
|
||||
implements ClientInterceptor, InitializingBean {
|
||||
|
||||
@@ -43,8 +43,8 @@ import org.springframework.ws.transport.WebServiceConnection;
|
||||
*
|
||||
* @author Giovanni Cuccu
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.client.core.WebServiceTemplate#setInterceptors(ClientInterceptor[])
|
||||
* @since 1.5.0
|
||||
* @see org.springframework.ws.client.core.WebServiceTemplate#setInterceptors(ClientInterceptor[])
|
||||
*/
|
||||
public interface ClientInterceptor {
|
||||
|
||||
|
||||
@@ -34,11 +34,11 @@ import org.springframework.ws.WebServiceMessage;
|
||||
*
|
||||
* @author Stefan Schmidt
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.5.4
|
||||
* @see #setSchema(org.springframework.core.io.Resource)
|
||||
* @see #setSchemas(org.springframework.core.io.Resource[])
|
||||
* @see #setValidateRequest(boolean)
|
||||
* @see #setValidateResponse(boolean)
|
||||
* @since 1.5.4
|
||||
*/
|
||||
public class PayloadValidatingInterceptor extends AbstractValidatingInterceptor {
|
||||
|
||||
|
||||
@@ -83,11 +83,11 @@ import org.springframework.context.annotation.Import;
|
||||
* }
|
||||
* }</code></pre>
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 2.2
|
||||
* @see WsConfigurer
|
||||
* @see WsConfigurerAdapter
|
||||
* @see WsConfigurationSupport
|
||||
* @author Arjen Poutsma
|
||||
* @since 2.2
|
||||
*/
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(ElementType.TYPE)
|
||||
|
||||
@@ -71,11 +71,11 @@ import org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationM
|
||||
* <li>{@link SimpleSoapExceptionResolver} for creating default exceptions.
|
||||
* </ul>
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 2.2
|
||||
* @see EnableWs
|
||||
* @see WsConfigurer
|
||||
* @see WsConfigurerAdapter
|
||||
* @author Arjen Poutsma
|
||||
* @since 2.2
|
||||
*/
|
||||
public class WsConfigurationSupport {
|
||||
|
||||
|
||||
@@ -25,9 +25,9 @@ import jakarta.activation.DataHandler;
|
||||
* Represents an attachment to a {@link org.springframework.ws.mime.MimeMessage}
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see MimeMessage#getAttachments()
|
||||
* @see MimeMessage#addAttachment
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public interface Attachment {
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@ import org.springframework.ws.WebServiceMessageException;
|
||||
* Exception thrown when a MIME attachment could not be accessed.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see Attachment
|
||||
* @since 1.0.0
|
||||
* @see Attachment
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
public class AttachmentException extends WebServiceMessageException {
|
||||
|
||||
@@ -41,8 +41,8 @@ import org.springframework.xml.namespace.QNameUtils;
|
||||
* Implementation of the {@code PoxMessage} interface that is based on a DOM Document.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see Document
|
||||
* @since 1.0.0
|
||||
* @see Document
|
||||
*/
|
||||
public class DomPoxMessage implements PoxMessage {
|
||||
|
||||
|
||||
@@ -28,8 +28,8 @@ import org.springframework.ws.context.MessageContext;
|
||||
* who want to develop their own message flow.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see MessageDispatcher
|
||||
* @since 1.0.0
|
||||
* @see MessageDispatcher
|
||||
*/
|
||||
public interface EndpointAdapter {
|
||||
|
||||
|
||||
@@ -38,10 +38,10 @@ import org.springframework.ws.context.MessageContext;
|
||||
* <list> of <ref>).
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see EndpointInvocationChain#getInterceptors()
|
||||
* @see org.springframework.ws.server.endpoint.interceptor.EndpointInterceptorAdapter
|
||||
* @see org.springframework.ws.server.endpoint.mapping.AbstractEndpointMapping#setInterceptors(EndpointInterceptor[])
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public interface EndpointInterceptor {
|
||||
|
||||
|
||||
@@ -21,8 +21,8 @@ package org.springframework.ws.server;
|
||||
* interceptors.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see EndpointInterceptor
|
||||
* @since 1.0.0
|
||||
* @see EndpointInterceptor
|
||||
*/
|
||||
public class EndpointInvocationChain {
|
||||
|
||||
|
||||
@@ -33,10 +33,10 @@ import org.springframework.ws.context.MessageContext;
|
||||
* if all {@code handlerRequest} methods have returned {@code true}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.server.endpoint.mapping.AbstractEndpointMapping
|
||||
* @see org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping
|
||||
* @see org.springframework.ws.soap.server.endpoint.mapping.SoapActionEndpointMapping
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public interface EndpointMapping {
|
||||
|
||||
|
||||
@@ -75,11 +75,11 @@ import org.springframework.ws.transport.WebServiceMessageReceiver;
|
||||
* </ul>
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see EndpointMapping
|
||||
* @see EndpointAdapter
|
||||
* @see EndpointExceptionResolver
|
||||
* @see org.springframework.web.servlet.DispatcherServlet
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class MessageDispatcher implements WebServiceMessageReceiver, BeanNameAware, ApplicationContextAware {
|
||||
|
||||
|
||||
@@ -39,8 +39,8 @@ import org.springframework.xml.transform.TransformerObjectSupport;
|
||||
* payload elements are not in accordance with WS-I.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.dom4j.Element
|
||||
* @since 1.0.0
|
||||
* @see org.dom4j.Element
|
||||
* @deprecated as of Spring Web Services 2.0, in favor of annotated endpoints
|
||||
*/
|
||||
@Deprecated
|
||||
|
||||
@@ -42,8 +42,8 @@ import org.springframework.xml.transform.TransformerObjectSupport;
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @author Alef Arendsen
|
||||
* @see #invokeInternal(org.w3c.dom.Element,org.w3c.dom.Document)
|
||||
* @since 1.0.0
|
||||
* @see #invokeInternal(org.w3c.dom.Element,org.w3c.dom.Document)
|
||||
* @deprecated as of Spring Web Services 2.0, in favor of annotated endpoints
|
||||
*/
|
||||
@Deprecated
|
||||
|
||||
@@ -36,12 +36,12 @@ import org.springframework.ws.support.MarshallingUtils;
|
||||
* parameter, and allows for a response object to be returned.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #setMarshaller(org.springframework.oxm.Marshaller)
|
||||
* @see Marshaller
|
||||
* @see #setUnmarshaller(org.springframework.oxm.Unmarshaller)
|
||||
* @see Unmarshaller
|
||||
* @see #invokeInternal(Object)
|
||||
* @since 1.0.0
|
||||
* @deprecated as of Spring Web Services 2.0, in favor of annotated endpoints
|
||||
*/
|
||||
@Deprecated
|
||||
|
||||
@@ -33,9 +33,9 @@ import org.springframework.xml.transform.TransformerObjectSupport;
|
||||
* to {@code createResponse}, so it can be used for holding request-specific state.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #createContentHandler()
|
||||
* @see #getResponse(org.xml.sax.ContentHandler)
|
||||
* @since 1.0.0
|
||||
* @deprecated as of Spring Web Services 2.0, in favor of annotated endpoints
|
||||
*/
|
||||
@Deprecated
|
||||
|
||||
@@ -43,11 +43,11 @@ import org.springframework.ws.context.MessageContext;
|
||||
* create a response using a {@code XMLEventWriter}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #invokeInternal(javax.xml.stream.XMLEventReader,javax.xml.stream.util.XMLEventConsumer,
|
||||
* javax.xml.stream.XMLEventFactory)
|
||||
* @see XMLEventReader
|
||||
* @see XMLEventWriter
|
||||
* @since 1.0.0
|
||||
* @deprecated as of Spring Web Services 2.0, in favor of annotated endpoints
|
||||
*/
|
||||
@Deprecated
|
||||
|
||||
@@ -27,9 +27,9 @@ import org.springframework.xml.transform.TransformerObjectSupport;
|
||||
* {@code XMLOutputFactory}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see XMLInputFactory
|
||||
* @see XMLOutputFactory
|
||||
* @since 1.0.0
|
||||
* @deprecated as of Spring Web Services 2.0, in favor of annotated endpoints
|
||||
*/
|
||||
@Deprecated
|
||||
|
||||
@@ -40,10 +40,10 @@ import org.springframework.ws.context.MessageContext;
|
||||
* response using a {@code XMLStreamWriter}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #invokeInternal(javax.xml.stream.XMLStreamReader,javax.xml.stream.XMLStreamWriter)
|
||||
* @see XMLStreamReader
|
||||
* @see XMLStreamWriter
|
||||
* @since 1.0.0
|
||||
* @deprecated as of Spring Web Services 2.0, in favor of annotated endpoints
|
||||
*/
|
||||
@Deprecated
|
||||
|
||||
@@ -59,8 +59,8 @@ import org.springframework.xml.transform.TraxUtils;
|
||||
* elements are not in accordance with WS-I.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see Element
|
||||
* @since 1.0.0
|
||||
* @see Element
|
||||
* @deprecated as of Spring Web Services 2.0, in favor of annotated endpoints
|
||||
*/
|
||||
@Deprecated
|
||||
|
||||
@@ -26,8 +26,8 @@ import org.springframework.ws.context.MessageContext;
|
||||
* and can be used to create a response.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.server.endpoint.PayloadEndpoint
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.server.endpoint.PayloadEndpoint
|
||||
*/
|
||||
public interface MessageEndpoint {
|
||||
|
||||
|
||||
@@ -47,9 +47,9 @@ import org.springframework.ws.support.MarshallingUtils;
|
||||
* set using properties.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #setMarshaller(org.springframework.oxm.Marshaller)
|
||||
* @see #setUnmarshaller(org.springframework.oxm.Unmarshaller)
|
||||
* @since 1.0.0
|
||||
* @deprecated as of Spring Web Services 2.0, in favor of
|
||||
* {@link DefaultMethodEndpointAdapter} and
|
||||
* {@link org.springframework.ws.server.endpoint.adapter.method.MarshallingPayloadMethodProcessor
|
||||
|
||||
@@ -30,8 +30,8 @@ import org.springframework.ws.soap.server.SoapMessageDispatcher;
|
||||
* {@link SoapMessageDispatcher}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.server.EndpointInvocationChain
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.server.EndpointInvocationChain
|
||||
*/
|
||||
public class MessageEndpointAdapter implements EndpointAdapter {
|
||||
|
||||
|
||||
@@ -34,9 +34,9 @@ import org.springframework.xml.transform.TransformerObjectSupport;
|
||||
* {@link SoapMessageDispatcher}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.server.endpoint.PayloadEndpoint
|
||||
* @see org.springframework.ws.server.EndpointInvocationChain
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class PayloadEndpointAdapter extends TransformerObjectSupport implements EndpointAdapter {
|
||||
|
||||
|
||||
@@ -36,8 +36,8 @@ import org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationM
|
||||
* {@link SoapActionAnnotationMethodEndpointMapping}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.context.annotation.ClassPathBeanDefinitionScanner
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.context.annotation.ClassPathBeanDefinitionScanner
|
||||
*/
|
||||
@Target(ElementType.TYPE)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
||||
@@ -32,9 +32,9 @@ import javax.xml.XMLConstants;
|
||||
* {@link PayloadRoot @PayloadRoot}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 2.0
|
||||
* @see XPathParam
|
||||
* @see PayloadRoot
|
||||
* @since 2.0
|
||||
*/
|
||||
@Documented
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
||||
@@ -27,8 +27,8 @@ import java.lang.annotation.Target;
|
||||
* package.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see Namespace
|
||||
* @since 2.0
|
||||
* @see Namespace
|
||||
*/
|
||||
@Documented
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
||||
@@ -28,8 +28,8 @@ import java.lang.annotation.Target;
|
||||
* signify the request payload root element that is handled by the method.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping
|
||||
*/
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
||||
@@ -26,8 +26,8 @@ import java.lang.annotation.Target;
|
||||
* Marks an endpoint method as containing multiple {@link PayloadRoot PayloadRoots}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping
|
||||
* @since 2.2
|
||||
* @see org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping
|
||||
*/
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
||||
@@ -28,8 +28,8 @@ import java.lang.annotation.Target;
|
||||
* payload}. Supported for annotated endpoint methods.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see ResponsePayload
|
||||
* @since 2.0
|
||||
* @see ResponsePayload
|
||||
*/
|
||||
@Target(ElementType.PARAMETER)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
||||
@@ -28,8 +28,8 @@ import java.lang.annotation.Target;
|
||||
* payload}. Supported for annotated endpoint methods.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see RequestPayload
|
||||
* @since 2.0
|
||||
* @see RequestPayload
|
||||
*/
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
||||
@@ -35,8 +35,8 @@ import java.lang.annotation.Target;
|
||||
* </ul>
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.server.endpoint.adapter.method.XPathParamMethodArgumentResolver
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.server.endpoint.adapter.method.XPathParamMethodArgumentResolver
|
||||
*/
|
||||
@Target(ElementType.PARAMETER)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
||||
@@ -51,9 +51,9 @@ import org.springframework.xml.xsd.XsdSchemaCollection;
|
||||
* using the {@code validateRequest} and {@code validateResponse} properties.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #getValidationRequestSource(org.springframework.ws.WebServiceMessage)
|
||||
* @see #getValidationResponseSource(org.springframework.ws.WebServiceMessage)
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public abstract class AbstractValidatingInterceptor extends TransformerObjectSupport
|
||||
implements EndpointInterceptor, InitializingBean {
|
||||
|
||||
@@ -30,9 +30,9 @@ import org.springframework.ws.server.endpoint.AbstractLoggingInterceptor;
|
||||
* {@link #setLogResponse(boolean) logResponse} properties.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #setLogRequest(boolean)
|
||||
* @see #setLogResponse(boolean)
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class PayloadLoggingInterceptor extends AbstractLoggingInterceptor {
|
||||
|
||||
|
||||
@@ -52,9 +52,9 @@ import org.springframework.xml.transform.TransformerObjectSupport;
|
||||
* simply not transformed. Setting one of the two is required, though.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #setRequestXslt(org.springframework.core.io.Resource)
|
||||
* @see #setResponseXslt(org.springframework.core.io.Resource)
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class PayloadTransformingInterceptor extends TransformerObjectSupport
|
||||
implements EndpointInterceptor, InitializingBean {
|
||||
|
||||
@@ -36,9 +36,9 @@ import org.springframework.ws.server.SmartEndpointInterceptor;
|
||||
* and endpoint interceptors.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #getEndpointInternal(org.springframework.ws.context.MessageContext)
|
||||
* @see org.springframework.ws.server.EndpointInterceptor
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public abstract class AbstractEndpointMapping extends ApplicationObjectSupport implements EndpointMapping, Ordered {
|
||||
|
||||
|
||||
@@ -44,8 +44,8 @@ import org.springframework.xml.transform.TransformerFactoryUtils;
|
||||
* described in {@code QNameEditor}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.xml.namespace.QNameEditor
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.xml.namespace.QNameEditor
|
||||
*/
|
||||
public class PayloadRootQNameEndpointMapping extends AbstractQNameEndpointMapping {
|
||||
|
||||
|
||||
@@ -50,8 +50,8 @@ import org.springframework.xml.transform.TransformerFactoryUtils;
|
||||
* local name.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see #setEndpoints(Object[])
|
||||
* @since 1.0.0
|
||||
* @see #setEndpoints(Object[])
|
||||
*/
|
||||
public class SimpleMethodEndpointMapping extends AbstractMethodEndpointMapping<String> implements InitializingBean {
|
||||
|
||||
|
||||
@@ -58,9 +58,9 @@ import org.springframework.xml.xpath.XPathExpressionFactory;
|
||||
* XPath expression for the incoming message, the value is the name of the endpoint.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #setExpression(String)
|
||||
* @see #setNamespaces(java.util.Map)
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class XPathPayloadEndpointMapping extends AbstractMapBasedEndpointMapping implements InitializingBean {
|
||||
|
||||
|
||||
@@ -32,11 +32,11 @@ import org.springframework.ws.WebServiceMessage;
|
||||
* itself. For the contents of the body, use {@code getPayloadSource()}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see SoapEnvelope#getBody()
|
||||
* @see #getPayloadSource()
|
||||
* @see #getPayloadResult()
|
||||
* @see SoapFault
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public interface SoapBody extends SoapElement {
|
||||
|
||||
|
||||
@@ -25,8 +25,8 @@ import javax.xml.transform.Source;
|
||||
* The base interface for all elements that are contained in a SOAP message.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see SoapMessage
|
||||
* @since 1.0.0
|
||||
* @see SoapMessage
|
||||
*/
|
||||
public interface SoapElement {
|
||||
|
||||
|
||||
@@ -26,8 +26,8 @@ import javax.xml.transform.Result;
|
||||
* {@code SoapFaultDetailElement}s, which represent the individual details.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see SoapFaultDetailElement
|
||||
* @since 1.0.0
|
||||
* @see SoapFaultDetailElement
|
||||
*/
|
||||
public interface SoapFaultDetail extends SoapElement {
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@ import javax.xml.transform.Result;
|
||||
* {@code SoapFaultDetailElement}s are contained in a {@code SoapDetail}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see SoapFaultDetail
|
||||
* @since 1.0.0
|
||||
* @see SoapFaultDetail
|
||||
*/
|
||||
public interface SoapFaultDetailElement extends SoapElement {
|
||||
|
||||
|
||||
@@ -26,9 +26,9 @@ import javax.xml.transform.Result;
|
||||
* {@code SoapHeaderElement}s, which represent the individual headers.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see SoapHeaderElement
|
||||
* @see SoapEnvelope#getHeader()
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public interface SoapHeader extends SoapElement {
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@ import javax.xml.transform.Result;
|
||||
* {@code SoapHeaderElement}s are contained in a {@code SoapHeader}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see SoapHeader
|
||||
* @since 1.0.0
|
||||
* @see SoapHeader
|
||||
*/
|
||||
public interface SoapHeaderElement extends SoapElement {
|
||||
|
||||
|
||||
@@ -28,10 +28,10 @@ import org.springframework.ws.mime.MimeMessage;
|
||||
* {@code WebServiceMessage}, the super-interface of this interface.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #getPayloadSource()
|
||||
* @see #getPayloadResult()
|
||||
* @see #getEnvelope()
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public interface SoapMessage extends MimeMessage, FaultAwareWebServiceMessage {
|
||||
|
||||
|
||||
@@ -23,9 +23,9 @@ import javax.xml.namespace.QName;
|
||||
* properties for elements that make up a soap envelope.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #SOAP_11
|
||||
* @see #SOAP_12
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public interface SoapVersion {
|
||||
|
||||
|
||||
@@ -30,8 +30,8 @@ import org.springframework.util.Assert;
|
||||
* Represents an Endpoint Reference, as defined in the WS-Addressing specification.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see <a href="http://www.w3.org/TR/ws-addr-core/#eprs">Endpoint References</a>
|
||||
* @since 1.5.0
|
||||
* @see <a href="http://www.w3.org/TR/ws-addr-core/#eprs">Endpoint References</a>
|
||||
*/
|
||||
public final class EndpointReference implements Serializable {
|
||||
|
||||
|
||||
@@ -32,9 +32,9 @@ import org.w3c.dom.Node;
|
||||
* Headers.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.5.0
|
||||
* @see <a href="http://www.w3.org/TR/ws-addr-core/#msgaddrprops">Message Addressing
|
||||
* Properties</a>
|
||||
* @since 1.5.0
|
||||
*/
|
||||
public final class MessageAddressingProperties implements Serializable {
|
||||
|
||||
|
||||
@@ -55,9 +55,9 @@ import org.springframework.ws.soap.addressing.server.annotation.Address;
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @author Corneil du Plessis (with thanks to Chris Bono)
|
||||
* @since 1.5.0
|
||||
* @see Action
|
||||
* @see Address
|
||||
* @since 1.5.0
|
||||
*/
|
||||
public class AnnotationActionEndpointMapping extends AbstractActionMethodEndpointMapping
|
||||
implements SmartInitializingSingleton {
|
||||
|
||||
@@ -49,8 +49,8 @@ import org.springframework.beans.BeansException;
|
||||
* bean definitions with different {@code address} property values.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.soap.addressing.core.MessageAddressingProperties#getAction()
|
||||
* @since 1.5.0
|
||||
* @see org.springframework.ws.soap.addressing.core.MessageAddressingProperties#getAction()
|
||||
*/
|
||||
public class SimpleActionEndpointMapping extends AbstractActionEndpointMapping {
|
||||
|
||||
|
||||
@@ -31,11 +31,10 @@ import org.springframework.ws.soap.addressing.core.MessageAddressingProperties;
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @author Leandro Quiroga
|
||||
* @since 1.5.0
|
||||
* @see <a href="http://www.w3.org/TR/2006/REC-ws-addr-core-20060509">Web Services
|
||||
* Addressing 1.0, May 2006</a>
|
||||
* @since 1.5.0
|
||||
*/
|
||||
|
||||
public class Addressing10 extends AbstractAddressingVersion {
|
||||
|
||||
private static final String NAMESPACE_URI = "http://www.w3.org/2005/08/addressing";
|
||||
|
||||
@@ -32,9 +32,9 @@ import org.springframework.ws.soap.addressing.core.MessageAddressingProperties;
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @author Leandro Quiroga
|
||||
* @since 1.5.0
|
||||
* @see <a href="http://www.w3.org/Submission/2004/SUBM-ws-addressing-20040810/">Web
|
||||
* Services Addressing, August 2004</a>
|
||||
* @since 1.5.0
|
||||
*/
|
||||
public class Addressing200408 extends AbstractAddressingVersion {
|
||||
|
||||
|
||||
@@ -28,8 +28,8 @@ import org.springframework.ws.soap.client.SoapFaultClientException;
|
||||
* fault occurs.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see SoapFaultClientException
|
||||
* @since 1.0.0
|
||||
* @see SoapFaultClientException
|
||||
*/
|
||||
public class SoapFaultMessageResolver implements FaultMessageResolver {
|
||||
|
||||
|
||||
@@ -58,8 +58,8 @@ import org.springframework.ws.transport.TransportOutputStream;
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @author Greg Turnquist
|
||||
* @see SOAPMessage
|
||||
* @since 1.0.0
|
||||
* @see SOAPMessage
|
||||
*/
|
||||
public class SaajSoapMessage extends AbstractSoapMessage {
|
||||
|
||||
|
||||
@@ -60,8 +60,8 @@ import org.springframework.ws.transport.TransportInputStream;
|
||||
* @author Arjen Poutsma
|
||||
* @author Greg Turnquist
|
||||
* @author Corneil du Plessis
|
||||
* @see org.springframework.ws.soap.saaj.SaajSoapMessage
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.soap.saaj.SaajSoapMessage
|
||||
*/
|
||||
public class SaajSoapMessageFactory implements SoapMessageFactory, InitializingBean {
|
||||
|
||||
|
||||
@@ -36,9 +36,9 @@ import org.springframework.util.StringUtils;
|
||||
* {@code Node}s and {@code SOAPElement}s.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see jakarta.xml.soap.Node
|
||||
* @see jakarta.xml.soap.SOAPElement
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class SaajContentHandler implements ContentHandler {
|
||||
|
||||
|
||||
@@ -41,9 +41,9 @@ import org.springframework.ws.transport.TransportConstants;
|
||||
* {@link Name} objects to {@link QName}s and vice-versa, and SAAJ version checking.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see Name
|
||||
* @see QName
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public abstract class SaajUtils {
|
||||
|
||||
|
||||
@@ -38,9 +38,9 @@ import org.springframework.xml.sax.AbstractXmlReader;
|
||||
* interfaces.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see jakarta.xml.soap.Node
|
||||
* @see jakarta.xml.soap.SOAPElement
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class SaajXmlReader extends AbstractXmlReader {
|
||||
|
||||
|
||||
@@ -25,9 +25,9 @@ import org.springframework.ws.server.EndpointInvocationChain;
|
||||
* the MustUnderstand headers for particular endpoint.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #getActorsOrRoles()
|
||||
* @see SoapMessageDispatcher
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class SoapEndpointInvocationChain extends EndpointInvocationChain {
|
||||
|
||||
|
||||
@@ -43,9 +43,9 @@ import org.springframework.ws.soap.soap12.Soap12Header;
|
||||
* {@link SoapEndpointInterceptor} objects.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.soap.SoapMessage
|
||||
* @see SoapEndpointInterceptor
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class SoapMessageDispatcher extends MessageDispatcher {
|
||||
|
||||
|
||||
@@ -34,9 +34,9 @@ import org.springframework.ws.soap.soap12.Soap12Fault;
|
||||
* template method that provides the definition for a given exception.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #setDefaultFault(SoapFaultDefinition)
|
||||
* @see #getFaultDefinition(Object,Exception)
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public abstract class AbstractSoapFaultDefinitionExceptionResolver extends AbstractEndpointExceptionResolver {
|
||||
|
||||
|
||||
@@ -25,9 +25,9 @@ import javax.xml.namespace.QName;
|
||||
* the {@code SoapFaultMappingExceptionResolver}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see SoapFaultDefinitionEditor
|
||||
* @see SoapFaultMappingExceptionResolver
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class SoapFaultDefinition {
|
||||
|
||||
|
||||
@@ -46,6 +46,7 @@ import org.springframework.xml.namespace.QNameEditor;
|
||||
* </ul>
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see javax.xml.namespace.QName#toString()
|
||||
* @see org.springframework.xml.namespace.QNameEditor
|
||||
* @see SoapFaultDefinition#RECEIVER
|
||||
@@ -53,7 +54,6 @@ import org.springframework.xml.namespace.QNameEditor;
|
||||
* @see SoapFaultDefinition#SENDER
|
||||
* @see SoapFaultDefinition#CLIENT
|
||||
* @see org.springframework.ws.soap.SoapFault#getFaultCode()
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class SoapFaultDefinitionEditor extends PropertyEditorSupport {
|
||||
|
||||
|
||||
@@ -49,8 +49,8 @@ import org.springframework.xml.namespace.QNameUtils;
|
||||
*
|
||||
* @author Tareq Abedrabbo
|
||||
* @author Arjen Poutsma
|
||||
* @see SoapHeader
|
||||
* @since 2.0
|
||||
* @see SoapHeader
|
||||
*/
|
||||
public class SoapHeaderElementMethodArgumentResolver implements MethodArgumentResolver {
|
||||
|
||||
|
||||
@@ -29,8 +29,8 @@ import java.lang.annotation.Target;
|
||||
* method.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping
|
||||
*/
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
||||
@@ -26,8 +26,8 @@ import java.lang.annotation.Target;
|
||||
* Marks an endpoint method as containing multiple {@link SoapAction SoapActions}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping
|
||||
* @since 2.2.1
|
||||
* @see org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping
|
||||
*/
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
||||
@@ -30,8 +30,8 @@ import javax.xml.namespace.QName;
|
||||
* exception is thrown.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.soap.server.endpoint.SoapFaultAnnotationExceptionResolver
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.soap.server.endpoint.SoapFaultAnnotationExceptionResolver
|
||||
*/
|
||||
@Target(ElementType.TYPE)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
||||
@@ -39,13 +39,13 @@ import org.springframework.ws.soap.SoapMessage;
|
||||
* overriding {@code handleRequestValidationErrors}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #setAddValidationErrorDetail(boolean)
|
||||
* @see #setFaultStringOrReason(String)
|
||||
* @see #DEFAULT_FAULTSTRING_OR_REASON
|
||||
* @see #setDetailElementName(javax.xml.namespace.QName)
|
||||
* @see #DEFAULT_DETAIL_ELEMENT_NAME
|
||||
* @see #handleResponseValidationErrors(org.springframework.ws.context.MessageContext,org.xml.sax.SAXParseException[])
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public abstract class AbstractFaultCreatingValidatingInterceptor extends AbstractValidatingInterceptor {
|
||||
|
||||
|
||||
@@ -34,11 +34,11 @@ import org.springframework.ws.WebServiceMessage;
|
||||
* properties. Responses that contains faults are not validated.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #setSchema(org.springframework.core.io.Resource)
|
||||
* @see #setSchemas(org.springframework.core.io.Resource[])
|
||||
* @see #setValidateRequest(boolean)
|
||||
* @see #setValidateResponse(boolean)
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class PayloadValidatingInterceptor extends AbstractFaultCreatingValidatingInterceptor {
|
||||
|
||||
|
||||
@@ -32,10 +32,10 @@ import org.springframework.ws.soap.server.SoapEndpointInterceptor;
|
||||
* {@code logResponse}, {@code logFault} properties.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #setLogRequest(boolean)
|
||||
* @see #setLogResponse(boolean)
|
||||
* @see #setLogFault(boolean)
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class SoapEnvelopeLoggingInterceptor extends AbstractLoggingInterceptor implements SoapEndpointInterceptor {
|
||||
|
||||
|
||||
@@ -38,9 +38,9 @@ import org.springframework.ws.soap.server.SoapEndpointMapping;
|
||||
* endpoint, as described in the SOAP specificication, this mapping is useful.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.ws.soap.SoapHeader#examineMustUnderstandHeaderElements(String)
|
||||
* @see org.springframework.ws.soap.SoapVersion#getNextActorOrRoleUri()
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class DelegatingSoapEndpointMapping implements InitializingBean, SoapEndpointMapping {
|
||||
|
||||
|
||||
@@ -28,8 +28,8 @@ import org.springframework.ws.soap.SoapFaultException;
|
||||
* SOAP 1.1 differs from SOAP 1.2 with respect to SOAP Faults.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see Soap11Fault
|
||||
* @since 1.0.0
|
||||
* @see Soap11Fault
|
||||
*/
|
||||
public interface Soap11Body extends SoapBody {
|
||||
|
||||
|
||||
@@ -25,8 +25,8 @@ import javax.xml.stream.XMLStreamWriter;
|
||||
* {@link XMLStreamWriter}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see StreamingWebServiceMessage
|
||||
* @since 2.0
|
||||
* @see StreamingWebServiceMessage
|
||||
*/
|
||||
public interface StreamingPayload {
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@ import org.springframework.ws.WebServiceMessage;
|
||||
* Sub-interface of {@link WebServiceMessage} that allows for setting a streaming payload.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see StreamingPayload
|
||||
* @since 2.0
|
||||
* @see StreamingPayload
|
||||
*/
|
||||
public interface StreamingWebServiceMessage extends WebServiceMessage {
|
||||
|
||||
|
||||
@@ -24,8 +24,8 @@ import org.springframework.ws.NoEndpointFoundException;
|
||||
* codes.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see NoEndpointFoundException
|
||||
* @since 1.0.0
|
||||
* @see NoEndpointFoundException
|
||||
*/
|
||||
public interface EndpointAwareWebServiceConnection extends WebServiceConnection {
|
||||
|
||||
|
||||
@@ -28,9 +28,9 @@ import org.springframework.util.Assert;
|
||||
* transport.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #getHeaderNames()
|
||||
* @see #getHeaders(String)
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public abstract class TransportInputStream extends InputStream {
|
||||
|
||||
|
||||
@@ -27,8 +27,8 @@ import org.springframework.util.Assert;
|
||||
* transport.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see #addHeader(String,String)
|
||||
* @since 1.0.0
|
||||
* @see #addHeader(String,String)
|
||||
*/
|
||||
public abstract class TransportOutputStream extends OutputStream {
|
||||
|
||||
|
||||
@@ -30,8 +30,8 @@ import org.springframework.ws.WebServiceMessageFactory;
|
||||
* A {@code WebServiceConnection} can be obtained using a {@link WebServiceMessageSender}.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see WebServiceMessageSender#createConnection(URI)
|
||||
* @since 1.0.0
|
||||
* @see WebServiceMessageSender#createConnection(URI)
|
||||
*/
|
||||
public interface WebServiceConnection extends AutoCloseable {
|
||||
|
||||
|
||||
@@ -29,8 +29,8 @@ import org.springframework.ws.WebServiceMessage;
|
||||
* {@link WebServiceConnection} objects.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see WebServiceConnection
|
||||
* @since 1.0.0
|
||||
* @see WebServiceConnection
|
||||
*/
|
||||
public interface WebServiceMessageSender {
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@ package org.springframework.ws.transport.context;
|
||||
* spawned by the current thread.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @see TransportContext
|
||||
* @since 1.0.0
|
||||
* @see TransportContext
|
||||
*/
|
||||
public abstract class TransportContextHolder {
|
||||
|
||||
|
||||
@@ -48,10 +48,10 @@ import org.springframework.ws.transport.WebServiceConnection;
|
||||
* {@link Credentials} instance (such as the {@link UsernamePasswordCredentials}).
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see HttpUrlConnectionMessageSender
|
||||
* @see HttpClient
|
||||
* @see #setCredentials(Credentials)
|
||||
* @since 1.0.0
|
||||
* @deprecated In favor of {@link HttpComponents5MessageSender}
|
||||
*/
|
||||
@Deprecated
|
||||
|
||||
@@ -40,9 +40,9 @@ import org.springframework.ws.client.support.interceptor.ClientInterceptor;
|
||||
* {@link FactoryBean} to set up a {@link CloseableHttpClient} using HttpComponents
|
||||
* HttpClient 5.
|
||||
*
|
||||
* @see <a href=https://hc.apache.org/httpcomponents-client>HttpComponents</a>
|
||||
* @author Lars Uffmann
|
||||
* @since 4.0.5
|
||||
* @see <a href=https://hc.apache.org/httpcomponents-client>HttpComponents</a>
|
||||
*/
|
||||
public class HttpComponents5ClientFactory implements FactoryBean<CloseableHttpClient> {
|
||||
|
||||
|
||||
@@ -55,8 +55,8 @@ import org.springframework.ws.transport.WebServiceConnection;
|
||||
* @author Arjen Poutsma
|
||||
* @author Greg Turnquist
|
||||
* @author Lars Uffmann
|
||||
* @see HttpClient
|
||||
* @since 4.0.5
|
||||
* @see HttpClient
|
||||
*/
|
||||
public class HttpComponents5MessageSender extends AbstractHttpWebServiceMessageSender
|
||||
implements InitializingBean, DisposableBean {
|
||||
|
||||
@@ -53,8 +53,8 @@ import org.springframework.ws.transport.WebServiceConnection;
|
||||
* @author Barry Pitman
|
||||
* @author Arjen Poutsma
|
||||
* @author Greg Turnquist
|
||||
* @see HttpClient
|
||||
* @since 2.1.0
|
||||
* @see HttpClient
|
||||
*/
|
||||
@SuppressWarnings("deprecation")
|
||||
public class HttpComponentsMessageSender extends AbstractHttpWebServiceMessageSender
|
||||
|
||||
@@ -35,8 +35,8 @@ import org.springframework.ws.transport.WebServiceConnection;
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @author Kazuki Shimizu
|
||||
* @see java.net.HttpURLConnection
|
||||
* @since 1.0.0
|
||||
* @see java.net.HttpURLConnection
|
||||
*/
|
||||
public class HttpUrlConnectionMessageSender extends AbstractHttpWebServiceMessageSender {
|
||||
|
||||
|
||||
@@ -45,9 +45,9 @@ import org.springframework.ws.transport.WebServiceConnection;
|
||||
* {@link HttpClient}.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 4.0
|
||||
* @see java.net.http.HttpClient
|
||||
* @see java.net.http.HttpRequest
|
||||
* @since 4.0
|
||||
*/
|
||||
public class JdkHttpClientConnection extends AbstractHttpSenderConnection {
|
||||
|
||||
|
||||
@@ -34,8 +34,8 @@ import org.springframework.ws.transport.WebServiceConnection;
|
||||
* with a pre-configured {@code HttpClient}.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @see java.net.http.HttpClient
|
||||
* @since 4.0
|
||||
* @see java.net.http.HttpClient
|
||||
*/
|
||||
public class JdkHttpClientMessageSender extends AbstractHttpWebServiceMessageSender implements InitializingBean {
|
||||
|
||||
|
||||
@@ -61,10 +61,10 @@ import org.springframework.xml.xsd.XsdSchema;
|
||||
* definitions will reflect the URL of the incoming request.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see org.springframework.web.servlet.DispatcherServlet
|
||||
* @see org.springframework.ws.server.MessageDispatcher
|
||||
* @see org.springframework.ws.transport.http.WebServiceMessageReceiverHandlerAdapter
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
public class MessageDispatcherServlet extends FrameworkServlet {
|
||||
|
||||
@@ -39,11 +39,11 @@ import org.springframework.ws.transport.support.WebServiceMessageReceiverObjectS
|
||||
* gateway to further message handling logic.
|
||||
*
|
||||
* @author Arjen Poutsma
|
||||
* @since 1.0.0
|
||||
* @see #setMessageFactory(org.springframework.ws.WebServiceMessageFactory)
|
||||
* @see org.springframework.ws.transport.WebServiceMessageReceiver
|
||||
* @see org.springframework.ws.WebServiceMessageFactory
|
||||
* @see org.springframework.ws.server.MessageDispatcher
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public class WebServiceMessageReceiverHandlerAdapter extends WebServiceMessageReceiverObjectSupport
|
||||
implements HandlerAdapter {
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user