reorganized file layout (part 1: moves and renames)
[org.ibex.core.git] / src / org / bouncycastle / asn1 / x509 / DistributionPointName.java
diff --git a/src/org/bouncycastle/asn1/x509/DistributionPointName.java b/src/org/bouncycastle/asn1/x509/DistributionPointName.java
deleted file mode 100644 (file)
index bac341e..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-package org.bouncycastle.asn1.x509;
-
-import org.bouncycastle.asn1.*;
-
-public class DistributionPointName
-    implements DEREncodable
-{
-    DEREncodable        name;
-    int                 type;
-
-    public static final int FULL_NAME = 0;
-    public static final int NAME_RELATIVE_TO_CRL_ISSUER = 1;
-
-    public DistributionPointName(
-        int             type,
-        DEREncodable    name)
-    {
-        this.type = type;
-        this.name = name;
-    }
-
-    /**
-     * <pre>
-     * DistributionPointName ::= CHOICE {
-     *     fullName                 [0] GeneralNames,
-     *     nameRelativeToCRLIssuer  [1] RelativeDistinguishedName
-     * }
-     * </pre>
-     */
-    public DERObject getDERObject()
-    {
-        return new DERTaggedObject(false, type, name);
-    }
-}