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 = "echoResponse", propOrder = { 51 "_return" 52 }) 53 public class EchoResponse { 54 55 @XmlElement(name = "return", namespace = "http://org.jboss.ws/wsref") 56 protected String _return; 57 58 66 public String getReturn() { 67 return _return; 68 } 69 70 78 public void setReturn(String value) { 79 this._return = value; 80 } 81 82 } 83 | Popular Tags |