public abstract class X509StreamParserSpi extends Object
X509StreamParser
Constructor and Description |
---|
X509StreamParserSpi() |
Modifier and Type | Method and Description |
---|---|
abstract void |
engineInit(InputStream in)
Initializes this stream parser with the input stream.
|
abstract Object |
engineRead()
Returns the next X.509 object of the type of this SPI from the given
input stream.
|
abstract Collection |
engineReadAll()
Returns all X.509 objects of the type of this SPI from
the given input stream.
|
public abstract void engineInit(InputStream in)
in
- The input stream.public abstract Object engineRead() throws StreamParsingException
null
if the
end of the stream is reached.StreamParsingException
- if the object cannot be created from input stream.public abstract Collection engineReadAll() throws StreamParsingException
null
if the end of the stream is reached.StreamParsingException
- if an object cannot be created from input stream.Copyright © 2015. All rights reserved.