package org.bouncycastle2.x509.util; import java.util.Collection; public interface StreamParser { Object read() throws StreamParsingException; Collection readAll() throws StreamParsingException; }