Home | History | Annotate | Download | only in asn1
      1 package org.bouncycastle.asn1;
      2 
      3 /**
      4  *
      5  * @deprecated Use ASN1ObjectIdentifier instead of this,
      6  */
      7 public class DERObjectIdentifier
      8     extends ASN1ObjectIdentifier
      9 {
     10     public DERObjectIdentifier(String identifier)
     11     {
     12         super(identifier);
     13     }
     14 
     15     DERObjectIdentifier(byte[] bytes)
     16     {
     17         super(bytes);
     18     }
     19 
     20     DERObjectIdentifier(ASN1ObjectIdentifier oid, String branch)
     21     {
     22         super(oid, branch);
     23     }
     24 }
     25