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 'core/src/main/java/org/bouncycastle/asn1/x509/CertPolicyId.java')
-rw-r--r--core/src/main/java/org/bouncycastle/asn1/x509/CertPolicyId.java57
1 files changed, 0 insertions, 57 deletions
diff --git a/core/src/main/java/org/bouncycastle/asn1/x509/CertPolicyId.java b/core/src/main/java/org/bouncycastle/asn1/x509/CertPolicyId.java
deleted file mode 100644
index ab1e5a22..00000000
--- a/core/src/main/java/org/bouncycastle/asn1/x509/CertPolicyId.java
+++ /dev/null
@@ -1,57 +0,0 @@
-package org.bouncycastle.asn1.x509;
-
-import org.bouncycastle.asn1.ASN1Object;
-import org.bouncycastle.asn1.ASN1ObjectIdentifier;
-import org.bouncycastle.asn1.ASN1Primitive;
-
-
-/**
- * CertPolicyId, used in the CertificatePolicies and PolicyMappings
- * X509V3 Extensions.
- *
- * <pre>
- * CertPolicyId ::= OBJECT IDENTIFIER
- * </pre>
- */
-/**
- * CertPolicyId, used in the CertificatePolicies and PolicyMappings
- * X509V3 Extensions.
- *
- * <pre>
- * CertPolicyId ::= OBJECT IDENTIFIER
- * </pre>
- */
-public class CertPolicyId
- extends ASN1Object
-{
- private ASN1ObjectIdentifier id;
-
- private CertPolicyId(ASN1ObjectIdentifier id)
- {
- this.id = id;
- }
-
- public static CertPolicyId getInstance(Object o)
- {
- if (o instanceof CertPolicyId)
- {
- return (CertPolicyId)o;
- }
- else if (o != null)
- {
- return new CertPolicyId(ASN1ObjectIdentifier.getInstance(o));
- }
-
- return null;
- }
-
- public String getId()
- {
- return id.getId();
- }
-
- public ASN1Primitive toASN1Primitive()
- {
- return id;
- }
-}