KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > rentacar > services > client > CentralOfficeException


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

30 @XmlAccessorType(AccessType.FIELD)
31 @XmlType(name = "CentralOfficeException", propOrder = {
32     "message",
33     "messageKey"
34 })
35 public class CentralOfficeException {
36
37     protected String JavaDoc message;
38     protected String JavaDoc messageKey;
39
40     /**
41      * Gets the value of the message property.
42      *
43      * @return
44      * possible object is
45      * {@link String }
46      *
47      */

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

60     public void setMessage(String JavaDoc value) {
61         this.message = value;
62     }
63
64     /**
65      * Gets the value of the messageKey property.
66      *
67      * @return
68      * possible object is
69      * {@link String }
70      *
71      */

72     public String JavaDoc getMessageKey() {
73         return messageKey;
74     }
75
76     /**
77      * Sets the value of the messageKey property.
78      *
79      * @param value
80      * allowed object is
81      * {@link String }
82      *
83      */

84     public void setMessageKey(String JavaDoc value) {
85         this.messageKey = value;
86     }
87
88 }
89
Popular Tags