Author: thomas.diesler(a)jboss.com
Date: 2007-05-22 14:00:47 -0400 (Tue, 22 May 2007)
New Revision: 3188
Removed:
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/Hello.java
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/HelloService.java
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/UserType.java
Log:
Remove duplicate java types
Deleted:
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/Hello.java
===================================================================
---
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/Hello.java 2007-05-22
17:27:48 UTC (rev 3187)
+++
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/Hello.java 2007-05-22
18:00:47 UTC (rev 3188)
@@ -1,40 +0,0 @@
-
-package org.jboss.test.ws.jaxws.samples.wssecurity;
-
-import javax.jws.WebMethod;
-import javax.jws.WebParam;
-import javax.jws.WebResult;
-import javax.jws.WebService;
-import javax.jws.soap.SOAPBinding;
-
-
-/**
- * JBossWS Generated Source
- *
- * Generation Date: Mon May 21 19:38:54 CEST 2007
- *
- * This generated source code represents a derivative work of the input to
- * the generator that produced it. Consult the input for the copyright and
- * terms of use that apply to this source code.
- *
- * JAX-WS Version: 2.0
- *
- */
-@WebService(name = "Hello", targetNamespace =
"http://org.jboss.ws/samples/wssecurity")
-@SOAPBinding(style = SOAPBinding.Style.RPC)
-public interface Hello {
-
-
- /**
- *
- * @param user
- * @return
- * returns org.jboss.test.ws.jaxws.samples.wssecurity.UserType
- */
- @WebMethod
- @WebResult(partName = "return")
- public UserType echoUserType(
- @WebParam(name = "user", partName = "user")
- UserType user);
-
-}
Deleted:
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/HelloService.java
===================================================================
---
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/HelloService.java 2007-05-22
17:27:48 UTC (rev 3187)
+++
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/HelloService.java 2007-05-22
18:00:47 UTC (rev 3188)
@@ -1,59 +0,0 @@
-
-package org.jboss.test.ws.jaxws.samples.wssecurity;
-
-import java.net.MalformedURLException;
-import java.net.URL;
-import javax.xml.namespace.QName;
-import javax.xml.ws.Service;
-import javax.xml.ws.WebEndpoint;
-import javax.xml.ws.WebServiceClient;
-
-
-/**
- * JBossWS Generated Source
- *
- * Generation Date: Mon May 21 19:38:54 CEST 2007
- *
- * This generated source code represents a derivative work of the input to
- * the generator that produced it. Consult the input for the copyright and
- * terms of use that apply to this source code.
- *
- * JAX-WS Version: 2.0
- *
- */
-@WebServiceClient(name = "HelloService", targetNamespace =
"http://org.jboss.ws/samples/wssecurity", wsdlLocation =
"file:/home/tdiesler/svn/jbossws/trunk/jbossws-core/src/test/resources/jaxws/samples/wssecurity/META-INF/wsdl/HelloService.wsdl")
-public class HelloService
- extends Service
-{
-
- private final static URL HELLOSERVICE_WSDL_LOCATION;
-
- static {
- URL url = null;
- try {
- url = new
URL("file:/home/tdiesler/svn/jbossws/trunk/jbossws-core/src/test/resources/jaxws/samples/wssecurity/META-INF/wsdl/HelloService.wsdl");
- } catch (MalformedURLException e) {
- e.printStackTrace();
- }
- HELLOSERVICE_WSDL_LOCATION = url;
- }
-
- public HelloService(URL wsdlLocation, QName serviceName) {
- super(wsdlLocation, serviceName);
- }
-
- public HelloService() {
- super(HELLOSERVICE_WSDL_LOCATION, new
QName("http://org.jboss.ws/samples/wssecurity", "HelloService"));
- }
-
- /**
- *
- * @return
- * returns Hello
- */
- @WebEndpoint(name = "HelloPort")
- public Hello getHelloPort() {
- return (Hello)super.getPort(new
QName("http://org.jboss.ws/samples/wssecurity", "HelloPort"),
Hello.class);
- }
-
-}
Deleted:
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/UserType.java
===================================================================
---
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/UserType.java 2007-05-22
17:27:48 UTC (rev 3187)
+++
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/UserType.java 2007-05-22
18:00:47 UTC (rev 3188)
@@ -1,60 +0,0 @@
-
-package org.jboss.test.ws.jaxws.samples.wssecurity;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for UserType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within
this class.
- *
- * <pre>
- * <complexType name="UserType">
- * <complexContent>
- * <restriction
base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="msg"
type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
-(a)XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "UserType", propOrder = {
- "msg"
-})
-public class UserType {
-
- protected String msg;
-
- /**
- * Gets the value of the msg property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getMsg() {
- return msg;
- }
-
- /**
- * Sets the value of the msg property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setMsg(String value) {
- this.msg = value;
- }
-
-}