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 = "findCerts", propOrder = { 31 "arg0", 32 "arg1" 33 }) 34 public class FindCerts { 35 36 protected String arg0; 37 protected boolean 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 67 public boolean isArg1() { 68 return arg1; 69 } 70 71 75 public void setArg1(boolean value) { 76 this.arg1 = value; 77 } 78 79 } 80 | Popular Tags |