Fix split package between spring-ws-support and spring-ws-core
This commit moves the classes from the o.s.ws.transport.http and o.s.ws.transport.support packages from spring-ws-support to spring-ws-core. It turns out these classes don't bring extra dependencies, which make the move quite straightforward. Closes gh-1202
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.transport.support;
|
||||
package org.springframework.ws.transport.http.test;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.InetSocketAddress;
|
||||
@@ -6,7 +6,7 @@
|
||||
<bean id="port"
|
||||
class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
|
||||
<property name="targetClass"
|
||||
value="org.springframework.ws.transport.support.FreePortScanner"/>
|
||||
value="org.springframework.ws.transport.http.test.FreePortScanner"/>
|
||||
<property name="targetMethod" value="getFreePort"/>
|
||||
</bean>
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.ws.transport.support;
|
||||
package org.springframework.ws.transport.test;
|
||||
|
||||
import javax.xml.transform.Source;
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap.org/soap/envelope/'>
|
||||
<SOAP-ENV:Body>
|
||||
<m:GetLastTradePrice xmlns:m='http://www.springframework.org/spring-ws'>
|
||||
<symbol>DIS</symbol>
|
||||
</m:GetLastTradePrice>
|
||||
</SOAP-ENV:Body>
|
||||
</SOAP-ENV:Envelope>
|
||||
@@ -37,7 +37,7 @@
|
||||
<property name="endpointMappings">
|
||||
<bean class="org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping">
|
||||
<property name="defaultEndpoint">
|
||||
<bean class="org.springframework.ws.transport.support.EchoPayloadEndpoint"/>
|
||||
<bean class="org.springframework.ws.transport.test.EchoPayloadEndpoint"/>
|
||||
</property>
|
||||
</bean>
|
||||
</property>
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
<property name="endpointMappings">
|
||||
<bean class="org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping">
|
||||
<property name="defaultEndpoint">
|
||||
<bean class="org.springframework.ws.transport.support.EchoPayloadEndpoint"/>
|
||||
<bean class="org.springframework.ws.transport.test.EchoPayloadEndpoint"/>
|
||||
</property>
|
||||
</bean>
|
||||
</property>
|
||||
|
||||
@@ -8,6 +8,4 @@
|
||||
<suppress files="." checks="SpringMethodVisibility"/>
|
||||
|
||||
<suppress files=".+TransportConstants\.java" checks="InterfaceIsType"/>
|
||||
<suppress files="spring-ws-support[\\/]src[\\/]main[\\/]java[\\/]org[\\/]springframework[\\/]ws[\\/]transport[\\/]http[\\/]" checks="JavadocPackage"/>
|
||||
<suppress files="spring-ws-support[\\/]src[\\/]main[\\/]java[\\/]org[\\/]springframework[\\/]ws[\\/]transport[\\/]support[\\/]" checks="JavadocPackage"/>
|
||||
</suppressions>
|
||||
Reference in New Issue
Block a user