Package org.bouncycastle.dvcs
Class DVCSRequestData
java.lang.Object
org.bouncycastle.dvcs.DVCSRequestData
- Direct Known Subclasses:
CCPDRequestData
,CPDRequestData
,VPKCRequestData
,VSDRequestData
Data piece of DVCRequest object (DVCS Data structure).
Its contents depend on the service type.
Its subclasses define the service-specific interface.
The concrete objects of DVCRequestData are created by buildDVCRequestData static method.
-
Field Summary
Modifier and TypeFieldDescriptionprotected org.bouncycastle.asn1.dvcs.Data
The underlying data object is accessible by subclasses. -
Constructor Summary
ModifierConstructorDescriptionprotected
DVCSRequestData
(org.bouncycastle.asn1.dvcs.Data data) The constructor is accessible by subclasses. -
Method Summary
Modifier and TypeMethodDescriptionorg.bouncycastle.asn1.dvcs.Data
Convert to ASN.1 structure (Data).
-
Field Details
-
data
protected org.bouncycastle.asn1.dvcs.Data dataThe underlying data object is accessible by subclasses.
-
-
Constructor Details
-
DVCSRequestData
protected DVCSRequestData(org.bouncycastle.asn1.dvcs.Data data) The constructor is accessible by subclasses.- Parameters:
data
- the data piece for this request.
-
-
Method Details
-
toASN1Structure
public org.bouncycastle.asn1.dvcs.Data toASN1Structure()Convert to ASN.1 structure (Data).- Returns:
- a Data object.
-