1 13 14 package org.ejbca.core.model.ca.caadmin.extendedcaservices; 15 16 import java.io.Serializable ; 17 18 import org.w3c.dom.Document ; 19 20 25 public class XKMSCAServiceResponse extends ExtendedCAServiceResponse implements Serializable { 26 27 private Document doc = null; 28 29 30 public XKMSCAServiceResponse(Document doc) { 31 this.doc = doc; 32 } 33 34 public Document getSignedDocument() { return this.doc; } 35 36 } 37 | Popular Tags |