1 2 package org.ejbca.core.protocol.ws.jaxws; 3 4 import javax.xml.bind.annotation.XmlAccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlRootElement; 7 import javax.xml.bind.annotation.XmlType; 8 9 10 16 @XmlRootElement(name = "EjbcaException", namespace = "http://ws.protocol.core.ejbca.org/") 17 @XmlAccessorType(XmlAccessType.FIELD) 18 @XmlType(name = "EjbcaException", namespace = "http://ws.protocol.core.ejbca.org/") 19 public class EjbcaExceptionBean { 20 21 private String message; 22 23 28 public String getMessage() { 29 return this.message; 30 } 31 32 37 public void setMessage(String message) { 38 this.message = message; 39 } 40 41 } 42 | Popular Tags |