Class PemReader.Section

java.lang.Object
com.google.api.client.util.PemReader.Section
Enclosing class:
PemReader

public static final class PemReader.Section extends Object
Section in the PEM file.
  • Field Details

    • title

      private final String title
      Title.
    • base64decodedBytes

      private final byte[] base64decodedBytes
      Base64-decoded bytes.
  • Constructor Details

    • Section

      Section(String title, byte[] base64decodedBytes)
      Parameters:
      title - title
      base64decodedBytes - base64-decoded bytes
  • Method Details

    • getTitle

      public String getTitle()
      Returns the title.
    • getBase64DecodedBytes

      public byte[] getBase64DecodedBytes()
      Returns the base64-decoded bytes (modifiable array).