Author: richard.opalka(a)jboss.com
Date: 2012-06-05 03:25:56 -0400 (Tue, 05 Jun 2012)
New Revision: 16352
Modified:
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/common/config/WSDLRequestHandlerTestCase.java
Log:
[JBWS-3335] fixing test compilation issue after SPI config added methods
Modified:
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/common/config/WSDLRequestHandlerTestCase.java
===================================================================
---
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/common/config/WSDLRequestHandlerTestCase.java 2012-06-04
19:38:42 UTC (rev 16351)
+++
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/common/config/WSDLRequestHandlerTestCase.java 2012-06-05
07:25:56 UTC (rev 16352)
@@ -33,6 +33,7 @@
import org.jboss.ws.core.server.WSDLRequestHandler;
import org.jboss.ws.common.DOMUtils;
import org.jboss.wsf.spi.management.ServerConfig;
+import org.jboss.wsf.spi.metadata.config.ClientConfig;
import org.jboss.wsf.spi.metadata.config.EndpointConfig;
import org.jboss.wsf.test.JBossWSTest;
import org.w3c.dom.Document;
@@ -183,8 +184,18 @@
this.webServiceSecurePort = webServiceSecurePort;
}
- public String getWebServiceHost()
+ public void addClientConfig(ClientConfig config)
{
+ // does nothing
+ }
+
+ public List<ClientConfig> getClientConfigs()
+ {
+ return null;
+ }
+
+ public String getWebServiceHost()
+ {
return webServiceHost;
}
Show replies by date