Package org.bouncycastle.dvcs
Class DVCSResponse
- java.lang.Object
-
- org.bouncycastle.dvcs.DVCSMessage
-
- org.bouncycastle.dvcs.DVCSResponse
-
public class DVCSResponse extends DVCSMessage
DVCResponse is general response to DVCS (RFC 3029). It represents responses for all types of services.
-
-
Constructor Summary
Constructors Constructor Description DVCSResponse(org.bouncycastle.asn1.cms.ContentInfo contentInfo)
Construct a DVCS Response from a ContentInfoDVCSResponse(CMSSignedData signedData)
Constructs DVCResponse from CMS SignedData object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.bouncycastle.asn1.ASN1Encodable
getContent()
Return the ASN.1 DVCSResponse structure making up the body of this response.-
Methods inherited from class org.bouncycastle.dvcs.DVCSMessage
getContentType
-
-
-
-
Constructor Detail
-
DVCSResponse
public DVCSResponse(CMSSignedData signedData) throws DVCSConstructionException
Constructs DVCResponse from CMS SignedData object.- Parameters:
signedData
- the CMS SignedData object containing the request- Throws:
DVCSConstructionException
-
DVCSResponse
public DVCSResponse(org.bouncycastle.asn1.cms.ContentInfo contentInfo) throws DVCSConstructionException
Construct a DVCS Response from a ContentInfo- Parameters:
contentInfo
- the contentInfo representing the DVCSRequest- Throws:
DVCSConstructionException
-
-
Method Detail
-
getContent
public org.bouncycastle.asn1.ASN1Encodable getContent()
Return the ASN.1 DVCSResponse structure making up the body of this response.- Specified by:
getContent
in classDVCSMessage
- Returns:
- an org.bouncycastle.asn1.dvcs.DVCSResponse object.
-
-