[jbossws-commits] JBossWS SVN: r8361 - in framework/trunk/testsuite/test/java/org/jboss/test/ws: jaxws/jbws1733 and 8 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Mon Oct 6 20:23:32 EDT 2008


Author: alessio.soldano at jboss.com
Date: 2008-10-06 20:23:32 -0400 (Mon, 06 Oct 2008)
New Revision: 8361

Modified:
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/complex/RegistrationServiceImpl.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1733/JBWS1733Impl.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1797/IWebsvcImpl.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/advanced/retail/OrderMgmtBean.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/advanced/retail/cc/CCVerificationBean.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/advanced/retail/profile/ProfileMgmtBean.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/webmethod/EndpointImpl.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/webfault/EndpointImpl.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/wrapped/accessor/AccessorImpl.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/management/recording/EndpointImpl.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/management/recording/EndpointWithHandlerImpl.java
Log:
Further fixes on @WebService


Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/complex/RegistrationServiceImpl.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/complex/RegistrationServiceImpl.java	2008-10-06 23:18:54 UTC (rev 8360)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/complex/RegistrationServiceImpl.java	2008-10-07 00:23:32 UTC (rev 8361)
@@ -38,7 +38,7 @@
  * @author <a href="mailto:jason.greene at jboss.com">Jason T. Greene</a>
  * @author Thomas.Diesler at jboss.com
  */
- at WebService(endpointInterface = "org.jboss.test.ws.jaxws.complex.Registration", name = "Registration", targetNamespace = "http://complex.jaxws.ws.test.jboss.org")
+ at WebService(endpointInterface = "org.jboss.test.ws.jaxws.complex.Registration", targetNamespace = "http://complex.jaxws.ws.test.jboss.org")
 public class RegistrationServiceImpl implements Registration
 {
    // Provide logging

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1733/JBWS1733Impl.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1733/JBWS1733Impl.java	2008-10-06 23:18:54 UTC (rev 8360)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1733/JBWS1733Impl.java	2008-10-07 00:23:32 UTC (rev 8361)
@@ -29,7 +29,7 @@
 import javax.xml.ws.WebServiceException;
 import javax.xml.ws.handler.MessageContext;
 
- at WebService(name = "JBWS1733", serviceName = "JBWS1733Service", endpointInterface = "org.jboss.test.ws.jaxws.jbws1733.JBWS1733")
+ at WebService(serviceName = "JBWS1733Service", endpointInterface = "org.jboss.test.ws.jaxws.jbws1733.JBWS1733")
 public class JBWS1733Impl implements JBWS1733
 {
 

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1797/IWebsvcImpl.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1797/IWebsvcImpl.java	2008-10-06 23:18:54 UTC (rev 8360)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1797/IWebsvcImpl.java	2008-10-07 00:23:32 UTC (rev 8361)
@@ -21,18 +21,17 @@
  */
 package org.jboss.test.ws.jaxws.jbws1797;
 
-import javax.jws.WebParam;
 import javax.jws.WebService;
 
 @WebService(endpointInterface = "org.jboss.test.ws.jaxws.jbws1797.IWebsvc", serviceName = "JBWS1797Service")
 public class IWebsvcImpl implements IWebsvc
 {
-   public String submit(@WebParam(name = "foo") String foo)
+   public String submit(String foo)
    {
       return "submit-" + foo;
    }
 
-   public String cancel(@WebParam(name = "foo") String foo, @WebParam(name = "bar", header = true) String bar)
+   public String cancel(String foo, String bar)
    {
       return "cancel-" + foo + bar;
    }

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/advanced/retail/OrderMgmtBean.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/advanced/retail/OrderMgmtBean.java	2008-10-06 23:18:54 UTC (rev 8360)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/advanced/retail/OrderMgmtBean.java	2008-10-07 00:23:32 UTC (rev 8361)
@@ -41,7 +41,7 @@
  * that offers access though RMI and SOAP
  */
 @Stateless
- at WebService(endpointInterface = "org.jboss.test.ws.jaxws.samples.advanced.retail.OrderMgmt", name = "OrderMgmt", serviceName = "OrderMgmtService")
+ at WebService(endpointInterface = "org.jboss.test.ws.jaxws.samples.advanced.retail.OrderMgmt", serviceName = "OrderMgmtService")
 @WebContext(contextRoot = "/jaxws-samples-retail")
 @HandlerChain(file = "jaxws-handler.xml")
 public class OrderMgmtBean implements OrderMgmt

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/advanced/retail/cc/CCVerificationBean.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/advanced/retail/cc/CCVerificationBean.java	2008-10-06 23:18:54 UTC (rev 8360)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/advanced/retail/cc/CCVerificationBean.java	2008-10-07 00:23:32 UTC (rev 8361)
@@ -29,7 +29,7 @@
 import org.jboss.wsf.spi.annotation.WebContext;
 
 @Stateless
- at WebService(endpointInterface = "org.jboss.test.ws.jaxws.samples.advanced.retail.cc.CCVerification", name = "CCVerification")
+ at WebService(endpointInterface = "org.jboss.test.ws.jaxws.samples.advanced.retail.cc.CCVerification")
 @WebContext(contextRoot = "/jaxws-samples-retail")
 //@HandlerChain(file = "../jaxws-handler.xml")
 public class CCVerificationBean implements CCVerification

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/advanced/retail/profile/ProfileMgmtBean.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/advanced/retail/profile/ProfileMgmtBean.java	2008-10-06 23:18:54 UTC (rev 8360)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/advanced/retail/profile/ProfileMgmtBean.java	2008-10-07 00:23:32 UTC (rev 8361)
@@ -27,7 +27,7 @@
 import org.jboss.wsf.spi.annotation.WebContext;
 
 @Stateless
- at WebService(endpointInterface = "org.jboss.test.ws.jaxws.samples.advanced.retail.profile.ProfileMgmt", name = "ProfileMgmt", serviceName = "ProfileMgmtService")
+ at WebService(endpointInterface = "org.jboss.test.ws.jaxws.samples.advanced.retail.profile.ProfileMgmt", serviceName = "ProfileMgmtService")
 @WebContext(contextRoot = "/jaxws-samples-retail")
 public class ProfileMgmtBean implements ProfileMgmt
 {

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/webmethod/EndpointImpl.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/webmethod/EndpointImpl.java	2008-10-06 23:18:54 UTC (rev 8360)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/webmethod/EndpointImpl.java	2008-10-07 00:23:32 UTC (rev 8361)
@@ -31,7 +31,7 @@
  * @author Thomas.Diesler at jboss.org
  * @since 12-Aug-2005
  */
- at WebService(name="Endpoint", serviceName="EndpointService", endpointInterface = "org.jboss.test.ws.jaxws.samples.webmethod.Endpoint")
+ at WebService(serviceName="EndpointService", portName="EndpointPort", endpointInterface = "org.jboss.test.ws.jaxws.samples.webmethod.Endpoint")
 public class EndpointImpl
 {
    // Provide logging

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/webfault/EndpointImpl.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/webfault/EndpointImpl.java	2008-10-06 23:18:54 UTC (rev 8360)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/webfault/EndpointImpl.java	2008-10-07 00:23:32 UTC (rev 8361)
@@ -31,7 +31,7 @@
  * @author alessio.soldano at jboss.org
  * @since 21-Feb-2008
  */
- at WebService(name="Endpoint", serviceName="EndpointService", endpointInterface = "org.jboss.test.ws.jaxws.webfault.Endpoint")
+ at WebService(serviceName="EndpointService", endpointInterface = "org.jboss.test.ws.jaxws.webfault.Endpoint")
 public class EndpointImpl
 {
    // Provide logging

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/wrapped/accessor/AccessorImpl.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/wrapped/accessor/AccessorImpl.java	2008-10-06 23:18:54 UTC (rev 8360)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/wrapped/accessor/AccessorImpl.java	2008-10-07 00:23:32 UTC (rev 8361)
@@ -23,7 +23,7 @@
 
 import javax.jws.WebService;
 
- at WebService(name="Accessor", serviceName="AccessorService", endpointInterface="org.jboss.test.ws.jaxws.wrapped.accessor.Accessor")
+ at WebService(serviceName="AccessorService", endpointInterface="org.jboss.test.ws.jaxws.wrapped.accessor.Accessor")
 public class AccessorImpl implements Accessor
 {
    public String fieldAccessor(String one, int two)

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/management/recording/EndpointImpl.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/management/recording/EndpointImpl.java	2008-10-06 23:18:54 UTC (rev 8360)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/management/recording/EndpointImpl.java	2008-10-07 00:23:32 UTC (rev 8361)
@@ -32,7 +32,7 @@
  * @since 06-Aug-2008
  */
 @Stateless
- at WebService(name="Endpoint", serviceName="EndpointService", endpointInterface = "org.jboss.test.ws.management.recording.Endpoint")
+ at WebService(serviceName="EndpointService", endpointInterface = "org.jboss.test.ws.management.recording.Endpoint")
 @WebContext(contextRoot="/management-recording", urlPattern="/EndpointImpl")
 public class EndpointImpl
 {

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/management/recording/EndpointWithHandlerImpl.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/management/recording/EndpointWithHandlerImpl.java	2008-10-06 23:18:54 UTC (rev 8360)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/management/recording/EndpointWithHandlerImpl.java	2008-10-07 00:23:32 UTC (rev 8361)
@@ -33,7 +33,7 @@
  * @since 06-Aug-2008
  */
 @Stateless
- at WebService(name="Endpoint", serviceName="EndpointService", endpointInterface = "org.jboss.test.ws.management.recording.Endpoint")
+ at WebService(serviceName="EndpointService", endpointInterface = "org.jboss.test.ws.management.recording.Endpoint")
 @HandlerChain(file="jaxws-handlers-server.xml")
 @WebContext(contextRoot="/management-recording", urlPattern="/EndpointImpl")
 public class EndpointWithHandlerImpl




More information about the jbossws-commits mailing list