Package com.google.api.client.util
Class PemReader.Section
java.lang.Object
com.google.api.client.util.PemReader.Section
- Enclosing class:
PemReader
Section in the PEM file.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final byte[]
Base64-decoded bytes.private final String
Title. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbyte[]
Returns the base64-decoded bytes (modifiable array).getTitle()
Returns the title.
-
Field Details
-
title
Title. -
base64decodedBytes
private final byte[] base64decodedBytesBase64-decoded bytes.
-
-
Constructor Details
-
Section
Section(String title, byte[] base64decodedBytes) - Parameters:
title
- titlebase64decodedBytes
- base64-decoded bytes
-
-
Method Details
-
getTitle
Returns the title. -
getBase64DecodedBytes
public byte[] getBase64DecodedBytes()Returns the base64-decoded bytes (modifiable array).
-