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 = "pkcs10Req", namespace = "http://ws.protocol.core.ejbca.org/") 11 @XmlAccessorType(XmlAccessType.FIELD) 12 @XmlType(name = "pkcs10Req", namespace = "http://ws.protocol.core.ejbca.org/", propOrder = { 13 "arg0", 14 "arg1", 15 "arg2", 16 "arg3" 17 }) 18 public class Pkcs10Req { 19 20 @XmlElement(name = "arg0", namespace = "") 21 private String arg0; 22 @XmlElement(name = "arg1", namespace = "") 23 private String arg1; 24 @XmlElement(name = "arg2", namespace = "") 25 private String arg2; 26 @XmlElement(name = "arg3", namespace = "") 27 private String arg3; 28 29 34 public String getArg0() { 35 return this.arg0; 36 } 37 38 43 public void setArg0(String arg0) { 44 this.arg0 = arg0; 45 } 46 47 52 public String getArg1() { 53 return this.arg1; 54 } 55 56 61 public void setArg1(String arg1) { 62 this.arg1 = arg1; 63 } 64 65 70 public String getArg2() { 71 return this.arg2; 72 } 73 74 79 public void setArg2(String arg2) { 80 this.arg2 = arg2; 81 } 82 83 88 public String getArg3() { 89 return this.arg3; 90 } 91 92 97 public void setArg3(String arg3) { 98 this.arg3 = arg3; 99 } 100 101 } 102 | Popular Tags |