Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pkix/src/main/java/org/bouncycastle/dvcs/DVCSRequestData.java')
-rw-r--r--pkix/src/main/java/org/bouncycastle/dvcs/DVCSRequestData.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkix/src/main/java/org/bouncycastle/dvcs/DVCSRequestData.java b/pkix/src/main/java/org/bouncycastle/dvcs/DVCSRequestData.java
deleted file mode 100644
index 3dbc6ba9..00000000
--- a/pkix/src/main/java/org/bouncycastle/dvcs/DVCSRequestData.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package org.bouncycastle.dvcs;
-
-import org.bouncycastle.asn1.dvcs.Data;
-
-/**
- * Data piece of DVCRequest object (DVCS Data structure).
- * Its contents depend on the service type.
- * Its subclasses define the service-specific interface.
- * <p/>
- * The concrete objects of DVCRequestData are created by buildDVCRequestData static method.
- */
-public abstract class DVCSRequestData
-{
- /**
- * The underlying data object is accessible by subclasses.
- */
- protected Data data;
-
- /**
- * The constructor is accessible by subclasses.
- *
- * @param data
- */
- protected DVCSRequestData(Data data)
- {
- this.data = data;
- }
-
- /**
- * Convert to ASN.1 structure (Data).
- *
- * @return
- */
- public Data toASN1Structure()
- {
- return data;
- }
-}