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.XmlElement; 7 import javax.xml.bind.annotation.XmlType; 8 9 10 29 @XmlAccessorType(XmlAccessType.FIELD) 30 @XmlType(name = "pkcs12ReqResponse", propOrder = { 31 "_return" 32 }) 33 public class Pkcs12ReqResponse { 34 35 @XmlElement(name = "return") 36 protected KeyStore _return; 37 38 46 public KeyStore getReturn() { 47 return _return; 48 } 49 50 58 public void setReturn(KeyStore value) { 59 this._return = value; 60 } 61 62 } 63 | Popular Tags |