1: package org.bouncycastle.util; 2: 3: import java.util.Collection; 4: 5: public interface StreamParser { 6: Object read() throws StreamParsingException; 7: 8: Collection readAll() throws StreamParsingException; 9: }