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.XmlElement; 7 import javax.xml.bind.annotation.XmlType; 8 9 10 29 @XmlAccessorType(XmlAccessType.FIELD) 30 @XmlType(name = "checkRevokationStatusResponse", propOrder = { 31 "_return" 32 }) 33 public class CheckRevokationStatusResponse { 34 35 @XmlElement(name = "return") 36 protected RevokeStatus _return; 37 38 46 public RevokeStatus getReturn() { 47 return _return; 48 } 49 50 58 public void setReturn(RevokeStatus value) { 59 this._return = value; 60 } 61 62 } 63 | Popular Tags |