Home | History | Annotate | Download | only in asn1
      1 package org.bouncycastle.asn1;
      2 
      3 import java.math.BigInteger;
      4 
      5 /**
      6  * @deprecated Use ASN1Enumerated instead of this.
      7  */
      8 public class DEREnumerated
      9     extends ASN1Enumerated
     10 {
     11     /**
     12      * @param bytes the value of this enumerated as an encoded BigInteger (signed).
     13      * @deprecated use ASN1Enumerated
     14      */
     15     DEREnumerated(byte[] bytes)
     16     {
     17         super(bytes);
     18     }
     19 
     20     /**
     21      * @param value the value of this enumerated.
     22      * @deprecated use ASN1Enumerated
     23      */
     24     public DEREnumerated(BigInteger value)
     25     {
     26         super(value);
     27     }
     28 
     29     /**
     30      * @param value the value of this enumerated.
     31      * @deprecated use ASN1Enumerated
     32      */
     33     public DEREnumerated(int value)
     34     {
     35         super(value);
     36     }
     37 }
     38