Interface PemObjectParser


public interface PemObjectParser
Base interface for parsers to convert PEM objects into specific objects.
  • Method Summary

    Modifier and Type
    Method
    Description
    Parse an object out of the PEM object passed in.
  • Method Details

    • parseObject

      Object parseObject(PemObject obj) throws IOException
      Parse an object out of the PEM object passed in.
      Parameters:
      obj - the PEM object containing the details for the specific object.
      Returns:
      a specific object represented by the PEM object.
      Throws:
      IOException - on a parsing error.