1 22 package org.jboss.test.ws.jaxws.webserviceref; 23 24 import javax.xml.bind.annotation.XmlAccessType; 25 import javax.xml.bind.annotation.XmlAccessorType; 26 import javax.xml.bind.annotation.XmlElement; 27 import javax.xml.bind.annotation.XmlType; 28 29 30 49 @XmlAccessorType(XmlAccessType.FIELD) 50 @XmlType(name = "echo", propOrder = { 51 "arg0" 52 }) 53 public class Echo { 54 55 @XmlElement(namespace = "http://org.jboss.ws/wsref") 56 protected String arg0; 57 58 66 public String getArg0() { 67 return arg0; 68 } 69 70 78 public void setArg0(String value) { 79 this.arg0 = value; 80 } 81 82 } 83 | Popular Tags |