Package org.bitcoin.protocols.payments
Interface Protos.X509CertificatesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
Protos.X509Certificates
,Protos.X509Certificates.Builder
- Enclosing class:
- Protos
public static interface Protos.X509CertificatesOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteString
getCertificate(int index)
DER-encoded X.509 certificate chainint
getCertificateCount()
DER-encoded X.509 certificate chainjava.util.List<com.google.protobuf.ByteString>
getCertificateList()
DER-encoded X.509 certificate chain
-
-
-
Method Detail
-
getCertificateList
java.util.List<com.google.protobuf.ByteString> getCertificateList()
DER-encoded X.509 certificate chain
repeated bytes certificate = 1;
- Returns:
- A list containing the certificate.
-
getCertificateCount
int getCertificateCount()
DER-encoded X.509 certificate chain
repeated bytes certificate = 1;
- Returns:
- The count of certificate.
-
getCertificate
com.google.protobuf.ByteString getCertificate(int index)
DER-encoded X.509 certificate chain
repeated bytes certificate = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The certificate at the given index.
-
-