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.XmlType; 7 8 9 28 @XmlAccessorType(XmlAccessType.FIELD) 29 @XmlType(name = "keyStore", propOrder = { 30 "keystoreData" 31 }) 32 public class KeyStore { 33 34 protected byte[] keystoreData; 35 36 43 public byte[] getKeystoreData() { 44 return keystoreData; 45 } 46 47 54 public void setKeystoreData(byte[] value) { 55 this.keystoreData = value; 56 } 57 58 } 59 | Popular Tags |