KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > tools > processors > java2 > types > SayHiResponse


1
2 package org.objectweb.celtix.tools.processors.java2.types;
3
4 import javax.xml.bind.annotation.AccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9
10
11 /**
12  * <p>Java class for sayHiResponse element declaration.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;element name="sayHiResponse">
18  * &lt;complexType>
19  * &lt;complexContent>
20  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21  * &lt;sequence>
22  * &lt;element name="responseType" type="{http://www.w3.org/2001/XMLSchema}string"/>
23  * &lt;/sequence>
24  * &lt;/restriction>
25  * &lt;/complexContent>
26  * &lt;/complexType>
27  * &lt;/element>
28  * </pre>
29  *
30  *
31  */

32 @XmlAccessorType(AccessType.FIELD)
33 @XmlType(name = "", propOrder = {
34              "responseType"
35          })
36 @XmlRootElement(name = "sayHiResponse")
37 public class SayHiResponse {
38
39     @XmlElement(namespace = "http://objectweb.org/hello_world_soap_http/types")
40     protected String JavaDoc responseType;
41
42     /**
43      * Gets the value of the responseType property.
44      *
45      * @return
46      * possible object is
47      * {@link String }
48      *
49      */

50     public String JavaDoc getResponseType() {
51         return responseType;
52     }
53
54     /**
55      * Sets the value of the responseType property.
56      *
57      * @param value
58      * allowed object is
59      * {@link String }
60      *
61      */

62     public void setResponseType(String JavaDoc value) {
63         this.responseType = value;
64     }
65
66 }
67
Popular Tags