KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > model > ca > caadmin > extendedcaservices > XKMSCAServiceResponse


1 /*************************************************************************
2  * *
3  * EJBCA: The OpenSource Certificate Authority *
4  * *
5  * This software is free software; you can redistribute it and/or *
6  * modify it under the terms of the GNU Lesser General Public *
7  * License as published by the Free Software Foundation; either *
8  * version 2.1 of the License, or any later version. *
9  * *
10  * See terms of license at gnu.org. *
11  * *
12  *************************************************************************/

13  
14 package org.ejbca.core.model.ca.caadmin.extendedcaservices;
15
16 import java.io.Serializable JavaDoc;
17
18 import org.w3c.dom.Document JavaDoc;
19
20 /**
21  * Class used when delevering XKMS service response from a CA.
22  *
23  * @version $Id: XKMSCAServiceResponse.java,v 1.1 2006/12/22 09:20:46 herrvendil Exp $
24  */

25 public class XKMSCAServiceResponse extends ExtendedCAServiceResponse implements Serializable JavaDoc {
26                  
27     private Document JavaDoc doc = null;
28     
29         
30     public XKMSCAServiceResponse(Document JavaDoc doc) {
31         this.doc = doc;
32     }
33            
34     public Document JavaDoc getSignedDocument() { return this.doc; }
35         
36 }
37
Popular Tags