Interface FetchCaCertsResponse.CertChainOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FetchCaCertsResponse.CertChain
,FetchCaCertsResponse.CertChain.Builder
- Enclosing class:
- FetchCaCertsResponse
public static interface FetchCaCertsResponse.CertChainOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCertificates(int index)
The certificates that form the CA chain, from leaf to root order.com.google.protobuf.ByteString
getCertificatesBytes(int index)
The certificates that form the CA chain, from leaf to root order.int
getCertificatesCount()
The certificates that form the CA chain, from leaf to root order.List<String>
getCertificatesList()
The certificates that form the CA chain, from leaf to root order.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCertificatesList
List<String> getCertificatesList()
The certificates that form the CA chain, from leaf to root order.
repeated string certificates = 1;
- Returns:
- A list containing the certificates.
-
getCertificatesCount
int getCertificatesCount()
The certificates that form the CA chain, from leaf to root order.
repeated string certificates = 1;
- Returns:
- The count of certificates.
-
getCertificates
String getCertificates(int index)
The certificates that form the CA chain, from leaf to root order.
repeated string certificates = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The certificates at the given index.
-
getCertificatesBytes
com.google.protobuf.ByteString getCertificatesBytes(int index)
The certificates that form the CA chain, from leaf to root order.
repeated string certificates = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the certificates at the given index.
-
-