1 2 package org.ejbca.core.protocol.ws.client.gen; 3 4 import javax.xml.bind.annotation.XmlAccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlType; 7 8 9 28 @XmlAccessorType(XmlAccessType.FIELD) 29 @XmlType(name = "WaitingForApprovalException", propOrder = { 30 "message" 31 }) 32 public class WaitingForApprovalException { 33 34 protected String message; 35 36 44 public String getMessage() { 45 return message; 46 } 47 48 56 public void setMessage(String value) { 57 this.message = value; 58 } 59 60 } 61 | Popular Tags |