KickJava   Java API By Example, From Geeks To Geeks.

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


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.XmlElement;
7 import javax.xml.bind.annotation.XmlType;
8 import org.objectweb.rentacar.services.client.CancelReservationResponse;
9
10
11 /**
12  * <p>Java class for cancelReservationResponse complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="cancelReservationResponse">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
22  * &lt;/sequence>
23  * &lt;/restriction>
24  * &lt;/complexContent>
25  * &lt;/complexType>
26  * </pre>
27  *
28  *
29  */

30 @XmlAccessorType(AccessType.FIELD)
31 @XmlType(name = "cancelReservationResponse", propOrder = {
32     "_return"
33 })
34 public class CancelReservationResponse {
35
36     @XmlElement(name = "return", type = Boolean JavaDoc.class)
37     protected boolean _return;
38
39     /**
40      * Gets the value of the return property.
41      *
42      */

43     public boolean isReturn() {
44         return _return;
45     }
46
47     /**
48      * Sets the value of the return property.
49      *
50      */

51     public void setReturn(boolean value) {
52         this._return = value;
53     }
54
55 }
56
Popular Tags