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 29 @XmlAccessorType(XmlAccessType.FIELD) 30 @XmlType(name = "checkRevokationStatus", propOrder = { 31 "arg0", 32 "arg1" 33 }) 34 public class CheckRevokationStatus { 35 36 protected String arg0; 37 protected String arg1; 38 39 47 public String getArg0() { 48 return arg0; 49 } 50 51 59 public void setArg0(String value) { 60 this.arg0 = value; 61 } 62 63 71 public String getArg1() { 72 return arg1; 73 } 74 75 83 public void setArg1(String value) { 84 this.arg1 = value; 85 } 86 87 } 88 | Popular Tags |