1 13 14 package org.ejbca.core.model.ca.caadmin.extendedcaservices; 15 16 import java.io.Serializable ; 17 18 23 public class CmsCAServiceResponse extends ExtendedCAServiceResponse implements Serializable { 24 25 33 private static final long serialVersionUID = 7704310763496240017L; 34 35 private byte[] doc = null; 36 37 38 public CmsCAServiceResponse(byte[] doc) { 39 this.doc = doc; 40 } 41 42 public byte[] getCmsDocument() { return this.doc; } 43 44 } 45 | Popular Tags |