KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > rentacar > agency > services > reservation > jaxws > CancelReservation


1
2 package org.objectweb.rentacar.agency.services.reservation.jaxws;
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 import org.objectweb.rentacar.agency.services.reservation.jaxws.CancelReservation;
10
11 @XmlRootElement(name = "cancelReservation", namespace = "http://reservation.services.agency.rentacar.objectweb.org/")
12 @XmlAccessorType(AccessType.FIELD)
13 @XmlType(name = "cancelReservation", namespace = "http://reservation.services.agency.rentacar.objectweb.org/")
14 public class CancelReservation {
15
16     @XmlElement(name = "reservationId", namespace = "")
17     private String JavaDoc reservationId;
18
19     /**
20      *
21      * @return
22      * returns String
23      */

24     public String JavaDoc getReservationId() {
25         return this.reservationId;
26     }
27
28     /**
29      *
30      * @param reservationId
31      * the value for the reservationId property
32      */

33     public void setReservationId(String JavaDoc reservationId) {
34         this.reservationId = reservationId;
35     }
36
37 }
38
Popular Tags