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 30 @XmlAccessorType(XmlAccessType.FIELD) 31 @XmlType(name = "revokeUser", propOrder = { 32 "arg0", 33 "arg1", 34 "arg2" 35 }) 36 public class RevokeUser { 37 38 protected String arg0; 39 protected int arg1; 40 protected boolean arg2; 41 42 50 public String getArg0() { 51 return arg0; 52 } 53 54 62 public void setArg0(String value) { 63 this.arg0 = value; 64 } 65 66 70 public int getArg1() { 71 return arg1; 72 } 73 74 78 public void setArg1(int value) { 79 this.arg1 = value; 80 } 81 82 86 public boolean isArg2() { 87 return arg2; 88 } 89 90 94 public void setArg2(boolean value) { 95 this.arg2 = value; 96 } 97 98 } 99 | Popular Tags |