001package org.apache.commons.ssl.org.bouncycastle.asn1;
002
003/**
004 *
005 * @deprecated Use ASN1ObjectIdentifier instead of this,
006 */
007public class DERObjectIdentifier
008    extends ASN1ObjectIdentifier
009{
010    public DERObjectIdentifier(String identifier)
011    {
012        super(identifier);
013    }
014
015    DERObjectIdentifier(byte[] bytes)
016    {
017        super(bytes);
018    }
019
020    DERObjectIdentifier(ASN1ObjectIdentifier oid, String branch)
021    {
022        super(oid, branch);
023    }
024}