001package org.apache.commons.ssl.org.bouncycastle.asn1; 002 003import java.math.BigInteger; 004 005/** 006 * @deprecated Use ASN1Enumerated instead of this. 007 */ 008public class DEREnumerated 009 extends ASN1Enumerated 010{ 011 /** 012 * @param bytes the value of this enumerated as an encoded BigInteger (signed). 013 * @deprecated use ASN1Enumerated 014 */ 015 DEREnumerated(byte[] bytes) 016 { 017 super(bytes); 018 } 019 020 /** 021 * @param value the value of this enumerated. 022 * @deprecated use ASN1Enumerated 023 */ 024 public DEREnumerated(BigInteger value) 025 { 026 super(value); 027 } 028 029 /** 030 * @param value the value of this enumerated. 031 * @deprecated use ASN1Enumerated 032 */ 033 public DEREnumerated(int value) 034 { 035 super(value); 036 } 037}