blob: 35efdf3bddc4fbdcf83a98248b1b0332ecc18220 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.asn1;
/**
*
* @deprecated Use ASN1ObjectIdentifier instead of this,
* @hide This class is not part of the Android public SDK API
*/
public class DERObjectIdentifier
extends ASN1ObjectIdentifier
{
@dalvik.annotation.compat.UnsupportedAppUsage
public DERObjectIdentifier(String identifier)
{
super(identifier);
}
DERObjectIdentifier(byte[] bytes)
{
super(bytes);
}
DERObjectIdentifier(ASN1ObjectIdentifier oid, String branch)
{
super(oid, branch);
}
}