Package dev.sigstore.proto.common.v1
Interface X509CertificateChainOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
X509CertificateChain,X509CertificateChain.Builder
public interface X509CertificateChainOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description X509CertificategetCertificates(int index)One or more DER-encoded certificates.intgetCertificatesCount()One or more DER-encoded certificates.java.util.List<X509Certificate>getCertificatesList()One or more DER-encoded certificates.X509CertificateOrBuildergetCertificatesOrBuilder(int index)One or more DER-encoded certificates.java.util.List<? extends X509CertificateOrBuilder>getCertificatesOrBuilderList()One or more DER-encoded certificates.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCertificatesList
java.util.List<X509Certificate> getCertificatesList()
One or more DER-encoded certificates. In some contexts (such as `VerificationMaterial.x509_certificate_chain`), this sequence has an imposed order. Unless explicitly specified, there is otherwise no guaranteed order.
repeated .dev.sigstore.common.v1.X509Certificate certificates = 1;
-
getCertificates
X509Certificate getCertificates(int index)
One or more DER-encoded certificates. In some contexts (such as `VerificationMaterial.x509_certificate_chain`), this sequence has an imposed order. Unless explicitly specified, there is otherwise no guaranteed order.
repeated .dev.sigstore.common.v1.X509Certificate certificates = 1;
-
getCertificatesCount
int getCertificatesCount()
One or more DER-encoded certificates. In some contexts (such as `VerificationMaterial.x509_certificate_chain`), this sequence has an imposed order. Unless explicitly specified, there is otherwise no guaranteed order.
repeated .dev.sigstore.common.v1.X509Certificate certificates = 1;
-
getCertificatesOrBuilderList
java.util.List<? extends X509CertificateOrBuilder> getCertificatesOrBuilderList()
One or more DER-encoded certificates. In some contexts (such as `VerificationMaterial.x509_certificate_chain`), this sequence has an imposed order. Unless explicitly specified, there is otherwise no guaranteed order.
repeated .dev.sigstore.common.v1.X509Certificate certificates = 1;
-
getCertificatesOrBuilder
X509CertificateOrBuilder getCertificatesOrBuilder(int index)
One or more DER-encoded certificates. In some contexts (such as `VerificationMaterial.x509_certificate_chain`), this sequence has an imposed order. Unless explicitly specified, there is otherwise no guaranteed order.
repeated .dev.sigstore.common.v1.X509Certificate certificates = 1;
-
-