Package dev.sigstore.fulcio.v2
Interface TrustBundleOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TrustBundle,TrustBundle.Builder
public interface TrustBundleOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CertificateChaingetChains(int index)The set of PEM-encoded certificate chains for this Fulcio instance; each chain will start with any intermediate certificates (if present), finishing with the root certificate.intgetChainsCount()The set of PEM-encoded certificate chains for this Fulcio instance; each chain will start with any intermediate certificates (if present), finishing with the root certificate.java.util.List<CertificateChain>getChainsList()The set of PEM-encoded certificate chains for this Fulcio instance; each chain will start with any intermediate certificates (if present), finishing with the root certificate.CertificateChainOrBuildergetChainsOrBuilder(int index)The set of PEM-encoded certificate chains for this Fulcio instance; each chain will start with any intermediate certificates (if present), finishing with the root certificate.java.util.List<? extends CertificateChainOrBuilder>getChainsOrBuilderList()The set of PEM-encoded certificate chains for this Fulcio instance; each chain will start with any intermediate certificates (if present), finishing with the root certificate.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getChainsList
java.util.List<CertificateChain> getChainsList()
The set of PEM-encoded certificate chains for this Fulcio instance; each chain will start with any intermediate certificates (if present), finishing with the root certificate.
repeated .dev.sigstore.fulcio.v2.CertificateChain chains = 1;
-
getChains
CertificateChain getChains(int index)
The set of PEM-encoded certificate chains for this Fulcio instance; each chain will start with any intermediate certificates (if present), finishing with the root certificate.
repeated .dev.sigstore.fulcio.v2.CertificateChain chains = 1;
-
getChainsCount
int getChainsCount()
The set of PEM-encoded certificate chains for this Fulcio instance; each chain will start with any intermediate certificates (if present), finishing with the root certificate.
repeated .dev.sigstore.fulcio.v2.CertificateChain chains = 1;
-
getChainsOrBuilderList
java.util.List<? extends CertificateChainOrBuilder> getChainsOrBuilderList()
The set of PEM-encoded certificate chains for this Fulcio instance; each chain will start with any intermediate certificates (if present), finishing with the root certificate.
repeated .dev.sigstore.fulcio.v2.CertificateChain chains = 1;
-
getChainsOrBuilder
CertificateChainOrBuilder getChainsOrBuilder(int index)
The set of PEM-encoded certificate chains for this Fulcio instance; each chain will start with any intermediate certificates (if present), finishing with the root certificate.
repeated .dev.sigstore.fulcio.v2.CertificateChain chains = 1;
-
-