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 = "certificate", propOrder = { 30 "certificateData" 31 }) 32 public class Certificate { 33 34 protected byte[] certificateData; 35 36 43 public byte[] getCertificateData() { 44 return certificateData; 45 } 46 47 54 public void setCertificateData(byte[] value) { 55 this.certificateData = value; 56 } 57 58 } 59 | Popular Tags |