KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > ws > jaxws > webserviceref > EchoResponse


1 /*
2  * JBoss, Home of Professional Open Source
3  * Copyright 2006, Red Hat Middleware LLC, and individual contributors
4  * by the @authors tag. See the copyright.txt in the distribution for a
5  * full listing of individual contributors.
6  *
7  * This is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU Lesser General Public License as
9  * published by the Free Software Foundation; either version 2.1 of
10  * the License, or (at your option) any later version.
11  *
12  * This software is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this software; if not, write to the Free
19  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21  */

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 /**
31  * <p>Java class for echoResponse complex type.
32  *
33  * <p>The following schema fragment specifies the expected content contained within this class.
34  *
35  * <pre>
36  * &lt;complexType name="echoResponse">
37  * &lt;complexContent>
38  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39  * &lt;sequence>
40  * &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
41  * &lt;/sequence>
42  * &lt;/restriction>
43  * &lt;/complexContent>
44  * &lt;/complexType>
45  * </pre>
46  *
47  *
48  */

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 JavaDoc _return;
57
58     /**
59      * Gets the value of the return property.
60      *
61      * @return
62      * possible object is
63      * {@link String }
64      *
65      */

66     public String JavaDoc getReturn() {
67         return _return;
68     }
69
70     /**
71      * Sets the value of the return property.
72      *
73      * @param value
74      * allowed object is
75      * {@link String }
76      *
77      */

78     public void setReturn(String JavaDoc value) {
79         this._return = value;
80     }
81
82 }
83
Popular Tags