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 = "revokeToken", namespace = "http://ws.protocol.core.ejbca.org/") 11 @XmlAccessorType(XmlAccessType.FIELD) 12 @XmlType(name = "revokeToken", namespace = "http://ws.protocol.core.ejbca.org/", propOrder = { 13 "arg0", 14 "arg1" 15 }) 16 public class RevokeToken { 17 18 @XmlElement(name = "arg0", namespace = "") 19 private String arg0; 20 @XmlElement(name = "arg1", namespace = "") 21 private int arg1; 22 23 28 public String getArg0() { 29 return this.arg0; 30 } 31 32 37 public void setArg0(String arg0) { 38 this.arg0 = arg0; 39 } 40 41 46 public int getArg1() { 47 return this.arg1; 48 } 49 50 55 public void setArg1(int arg1) { 56 this.arg1 = arg1; 57 } 58 59 } 60 | Popular Tags |