1 2 package org.ejbca.core.protocol.ws.jaxws; 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.XmlRootElement; 8 import javax.xml.bind.annotation.XmlType; 9 10 @XmlRootElement(name = "revokeCert", namespace = "http://ws.protocol.core.ejbca.org/") 11 @XmlAccessorType(XmlAccessType.FIELD) 12 @XmlType(name = "revokeCert", namespace = "http://ws.protocol.core.ejbca.org/", propOrder = { 13 "arg0", 14 "arg1", 15 "arg2" 16 }) 17 public class RevokeCert { 18 19 @XmlElement(name = "arg0", namespace = "") 20 private String arg0; 21 @XmlElement(name = "arg1", namespace = "") 22 private String arg1; 23 @XmlElement(name = "arg2", namespace = "") 24 private int arg2; 25 26 31 public String getArg0() { 32 return this.arg0; 33 } 34 35 40 public void setArg0(String arg0) { 41 this.arg0 = arg0; 42 } 43 44 49 public String getArg1() { 50 return this.arg1; 51 } 52 53 58 public void setArg1(String arg1) { 59 this.arg1 = arg1; 60 } 61 62 67 public int getArg2() { 68 return this.arg2; 69 } 70 71 76 public void setArg2(int arg2) { 77 this.arg2 = arg2; 78 } 79 80 } 81 | Popular Tags |