Class X509CertParser


  • public class X509CertParser
    extends X509StreamParserSpi
    Deprecated.
    use CertificateFactory or the PEMParser in the openssl package (pkix jar).
    • Constructor Summary

      Constructors 
      Constructor Description
      X509CertParser()
      Deprecated.
       
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      void engineInit​(java.io.InputStream in)
      Deprecated.
      Initializes this stream parser with the input stream.
      java.lang.Object engineRead()
      Deprecated.
      Returns the next X.509 object of the type of this SPI from the given input stream.
      java.util.Collection engineReadAll()
      Deprecated.
      Returns all X.509 objects of the type of this SPI from the given input stream.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • X509CertParser

        public X509CertParser()
        Deprecated.
    • Method Detail

      • engineInit

        public void engineInit​(java.io.InputStream in)
        Deprecated.
        Description copied from class: X509StreamParserSpi
        Initializes this stream parser with the input stream.
        Specified by:
        engineInit in class X509StreamParserSpi
        Parameters:
        in - The input stream.
      • engineReadAll

        public java.util.Collection engineReadAll()
                                           throws StreamParsingException
        Deprecated.
        Description copied from class: X509StreamParserSpi
        Returns all X.509 objects of the type of this SPI from the given input stream.
        Specified by:
        engineReadAll in class X509StreamParserSpi
        Returns:
        A collection of all X.509 objects in the input stream or null if the end of the stream is reached.
        Throws:
        StreamParsingException - if an object cannot be created from input stream.