Moved server-side classes to server package.

This commit is contained in:
Arjen Poutsma
2007-01-14 13:44:18 +00:00
parent 0e1943c1c5
commit 5800c82444
19 changed files with 26 additions and 21 deletions

View File

@@ -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 {

View File

@@ -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();

View File

@@ -1,4 +1,4 @@
package org.springframework.ws.soap.endpoint;
package org.springframework.ws.soap.server.endpoint;
import java.util.Locale;

View File

@@ -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");

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -0,0 +1,5 @@
<html>
<body>
Provides miscellaneous endpoints <code>EndpointMapping</code> implementations for SOAP purposes.
</body>
</html>

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;