All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.commons.ssl.asn1.DEREncodableVector Maven / Gradle / Ivy

package org.apache.commons.ssl.asn1;

import java.util.Vector;

/**
 * a general class for building up a vector of DER encodable objects -
 * this will eventually be superceded by ASN1EncodableVector so you should
 * use that class in preference.
 */
public class DEREncodableVector {
    private Vector v = new Vector();

    /** @deprecated use ASN1EncodableVector instead. */
    public DEREncodableVector() {

    }

    public void add(
        DEREncodable obj) {
        v.addElement(obj);
    }

    public DEREncodable get(
        int i) {
        return (DEREncodable) v.elementAt(i);
    }

    public int size() {
        return v.size();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy