001package org.apache.commons.ssl.asn1; 002 003import java.io.IOException; 004 005public interface ASN1SequenceParser 006 extends DEREncodable { 007 DEREncodable readObject() 008 throws IOException; 009}