Moved server-side classes to server package.
This commit is contained in:
@@ -33,7 +33,7 @@ import org.springframework.ws.context.MessageContext;
|
||||
* @author Arjen Poutsma
|
||||
* @see org.springframework.ws.server.endpoint.mapping.AbstractEndpointMapping
|
||||
* @see org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping
|
||||
* @see org.springframework.ws.soap.endpoint.mapping.SoapActionEndpointMapping
|
||||
* @see org.springframework.ws.soap.server.endpoint.mapping.SoapActionEndpointMapping
|
||||
*/
|
||||
public interface EndpointMapping {
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ import org.springframework.ws.soap.SoapHeader;
|
||||
import org.springframework.ws.soap.SoapHeaderElement;
|
||||
import org.springframework.ws.soap.SoapMessage;
|
||||
import org.springframework.ws.soap.SoapVersion;
|
||||
import org.springframework.ws.soap.endpoint.SimpleSoapExceptionResolver;
|
||||
import org.springframework.ws.soap.server.endpoint.SimpleSoapExceptionResolver;
|
||||
import org.springframework.ws.soap.soap12.Soap12Header;
|
||||
|
||||
/**
|
||||
@@ -82,7 +82,7 @@ public class SoapMessageDispatcher extends MessageDispatcher {
|
||||
*
|
||||
* @see org.springframework.ws.server.MessageDispatcher#initDefaultStrategies()
|
||||
* @see #setEndpointExceptionResolvers(java.util.List)
|
||||
* @see org.springframework.ws.soap.endpoint.SimpleSoapExceptionResolver
|
||||
* @see org.springframework.ws.soap.server.endpoint.SimpleSoapExceptionResolver
|
||||
*/
|
||||
protected void initDefaultStrategies() {
|
||||
super.initDefaultStrategies();
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.ws.soap.endpoint;
|
||||
package org.springframework.ws.soap.server.endpoint;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.soap.endpoint;
|
||||
package org.springframework.ws.soap.server.endpoint;
|
||||
|
||||
import java.util.Locale;
|
||||
import javax.xml.namespace.QName;
|
||||
@@ -32,28 +32,28 @@ public class SoapFaultDefinition {
|
||||
/**
|
||||
* Constant <code>QName</code> used to indicate that a <code>Client</code> fault must be created.
|
||||
*
|
||||
* @see org.springframework.ws.soap.SoapBody#addClientOrSenderFault(String, java.util.Locale)
|
||||
* @see org.springframework.ws.soap.SoapBody#addClientOrSenderFault(String,java.util.Locale)
|
||||
*/
|
||||
public static final QName CLIENT = new QName("CLIENT");
|
||||
|
||||
/**
|
||||
* Constant <code>QName</code> used to indicate that a <code>Receiver</code> fault must be created.
|
||||
*
|
||||
* @see org.springframework.ws.soap.SoapBody#addServerOrReceiverFault(String, java.util.Locale)
|
||||
* @see org.springframework.ws.soap.SoapBody#addServerOrReceiverFault(String,java.util.Locale)
|
||||
*/
|
||||
public static final QName RECEIVER = new QName("RECEIVER");
|
||||
|
||||
/**
|
||||
* Constant <code>QName</code> used to indicate that a <code>Sender</code> fault must be created.
|
||||
*
|
||||
* @see org.springframework.ws.soap.SoapBody#addServerOrReceiverFault(String, java.util.Locale)
|
||||
* @see org.springframework.ws.soap.SoapBody#addServerOrReceiverFault(String,java.util.Locale)
|
||||
*/
|
||||
public static final QName SENDER = new QName("SENDER");
|
||||
|
||||
/**
|
||||
* Constant <code>QName</code> used to indicate that a <code>Server</code> fault must be created.
|
||||
*
|
||||
* @see org.springframework.ws.soap.SoapBody#addClientOrSenderFault(String, java.util.Locale)
|
||||
* @see org.springframework.ws.soap.SoapBody#addClientOrSenderFault(String,java.util.Locale)
|
||||
*/
|
||||
public static final QName SERVER = new QName("SERVER");
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.soap.endpoint;
|
||||
package org.springframework.ws.soap.server.endpoint;
|
||||
|
||||
import java.beans.PropertyEditorSupport;
|
||||
import java.util.Locale;
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.soap.endpoint;
|
||||
package org.springframework.ws.soap.server.endpoint;
|
||||
|
||||
import java.util.Enumeration;
|
||||
import java.util.Properties;
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.soap.endpoint.interceptor;
|
||||
package org.springframework.ws.soap.server.endpoint.interceptor;
|
||||
|
||||
import javax.xml.transform.Source;
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.soap.endpoint.mapping;
|
||||
package org.springframework.ws.soap.server.endpoint.mapping;
|
||||
|
||||
import org.springframework.beans.factory.InitializingBean;
|
||||
import org.springframework.util.Assert;
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.soap.endpoint.mapping;
|
||||
package org.springframework.ws.soap.server.endpoint.mapping;
|
||||
|
||||
import org.springframework.util.Assert;
|
||||
import org.springframework.util.StringUtils;
|
||||
@@ -0,0 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
Provides miscellaneous endpoints <code>EndpointMapping</code> implementations for SOAP purposes.
|
||||
</body>
|
||||
</html>
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.soap.endpoint;
|
||||
package org.springframework.ws.soap.server.endpoint;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.soap.endpoint;
|
||||
package org.springframework.ws.soap.server.endpoint;
|
||||
|
||||
import java.util.Locale;
|
||||
import javax.xml.namespace.QName;
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.soap.endpoint;
|
||||
package org.springframework.ws.soap.server.endpoint;
|
||||
|
||||
import java.util.Locale;
|
||||
import java.util.Properties;
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.soap.endpoint.interceptor;
|
||||
package org.springframework.ws.soap.server.endpoint.interceptor;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import org.apache.log4j.AppenderSkeleton;
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.soap.endpoint.mapping;
|
||||
package org.springframework.ws.soap.server.endpoint.mapping;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import org.easymock.MockControl;
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.soap.endpoint.mapping;
|
||||
package org.springframework.ws.soap.server.endpoint.mapping;
|
||||
|
||||
import javax.xml.soap.MessageFactory;
|
||||
|
||||
@@ -20,7 +20,7 @@ import org.springframework.web.context.support.StaticWebApplicationContext;
|
||||
import org.springframework.ws.server.MessageDispatcher;
|
||||
import org.springframework.ws.server.endpoint.PayloadEndpointAdapter;
|
||||
import org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping;
|
||||
import org.springframework.ws.soap.endpoint.SimpleSoapExceptionResolver;
|
||||
import org.springframework.ws.soap.server.endpoint.SimpleSoapExceptionResolver;
|
||||
import org.springframework.ws.wsdl.wsdl11.SimpleWsdl11Definition;
|
||||
import org.w3c.dom.Document;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user