summaryrefslogtreecommitdiffstats
path: root/bcpkix/src/main/java/org/bouncycastle/cert/jcajce/JcaX509CRLHolder.java
diff options
context:
space:
mode:
Diffstat (limited to 'bcpkix/src/main/java/org/bouncycastle/cert/jcajce/JcaX509CRLHolder.java')
-rw-r--r--bcpkix/src/main/java/org/bouncycastle/cert/jcajce/JcaX509CRLHolder.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/bcpkix/src/main/java/org/bouncycastle/cert/jcajce/JcaX509CRLHolder.java b/bcpkix/src/main/java/org/bouncycastle/cert/jcajce/JcaX509CRLHolder.java
deleted file mode 100644
index 43665c0..0000000
--- a/bcpkix/src/main/java/org/bouncycastle/cert/jcajce/JcaX509CRLHolder.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package org.bouncycastle.cert.jcajce;
-
-import java.security.cert.CRLException;
-import java.security.cert.X509CRL;
-
-import org.bouncycastle.asn1.x509.CertificateList;
-import org.bouncycastle.cert.X509CRLHolder;
-
-/**
- * JCA helper class for converting an X509CRL into a X509CRLHolder object.
- */
-public class JcaX509CRLHolder
- extends X509CRLHolder
-{
- /**
- * Base constructor.
- *
- * @param crl CRL to be used a the source for the holder creation.
- * @throws CRLException if there is a problem extracting the CRL information.
- */
- public JcaX509CRLHolder(X509CRL crl)
- throws CRLException
- {
- super(CertificateList.getInstance(crl.getEncoded()));
- }
-}