001package org.apache.commons.ssl.org.bouncycastle.asn1; 002 003/** 004 * a general class for building up a vector of DER encodable objects - 005 * this will eventually be superceded by ASN1EncodableVector so you should 006 * use that class in preference. 007 */ 008public class DEREncodableVector 009 extends ASN1EncodableVector 010{ 011 /** 012 * @deprecated use ASN1EncodableVector instead. 013 */ 014 public DEREncodableVector() 015 { 016 017 } 018}