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 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 message; 23 24 29 public String getMessage() { 30 return this.message; 31 } 32 33 38 public void setMessage(String message) { 39 this.message = message; 40 } 41 42 } 43 | Popular Tags |