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 = "pkcs12Req", namespace = "http://ws.protocol.core.ejbca.org/") 11 @XmlAccessorType(XmlAccessType.FIELD) 12 @XmlType(name = "pkcs12Req", namespace = "http://ws.protocol.core.ejbca.org/", propOrder = { 13 "arg0", 14 "arg1", 15 "arg2", 16 "arg3", 17 "arg4" 18 }) 19 public class Pkcs12Req { 20 21 @XmlElement(name = "arg0", namespace = "") 22 private String arg0; 23 @XmlElement(name = "arg1", namespace = "") 24 private String arg1; 25 @XmlElement(name = "arg2", namespace = "") 26 private String arg2; 27 @XmlElement(name = "arg3", namespace = "") 28 private String arg3; 29 @XmlElement(name = "arg4", namespace = "") 30 private String arg4; 31 32 37 public String getArg0() { 38 return this.arg0; 39 } 40 41 46 public void setArg0(String arg0) { 47 this.arg0 = arg0; 48 } 49 50 55 public String getArg1() { 56 return this.arg1; 57 } 58 59 64 public void setArg1(String arg1) { 65 this.arg1 = arg1; 66 } 67 68 73 public String getArg2() { 74 return this.arg2; 75 } 76 77 82 public void setArg2(String arg2) { 83 this.arg2 = arg2; 84 } 85 86 91 public String getArg3() { 92 return this.arg3; 93 } 94 95 100 public void setArg3(String arg3) { 101 this.arg3 = arg3; 102 } 103 104 109 public String getArg4() { 110 return this.arg4; 111 } 112 113 118 public void setArg4(String arg4) { 119 this.arg4 = arg4; 120 } 121 122 } 123 | Popular Tags |