KickJava   Java API By Example, From Geeks To Geeks.

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


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.XmlRootElement;
7 import javax.xml.bind.annotation.XmlType;
8 import org.objectweb.rentacar.agency.services.reservation.jaxws.DAOExceptionBean;
9
10
11 /**
12  * This class was generated by the JAXWS SI.
13  * JAX-WS RI 2.0-b26-ea3
14  * Generated source version: 2.0
15  *
16  */

17 @XmlRootElement(name = "DAOException", namespace = "http://reservation.services.agency.rentacar.objectweb.org/")
18 @XmlAccessorType(AccessType.FIELD)
19 @XmlType(name = "DAOException", namespace = "http://reservation.services.agency.rentacar.objectweb.org/")
20 public class DAOExceptionBean {
21
22     private String JavaDoc message;
23
24     /**
25      *
26      * @return
27      * returns String
28      */

29     public String JavaDoc getMessage() {
30         return this.message;
31     }
32
33     /**
34      *
35      * @param message
36      * the value for the message property
37      */

38     public void setMessage(String JavaDoc message) {
39         this.message = message;
40     }
41
42 }
43
Popular Tags