io.spiffe.helper.keystore.AuthorityEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-spiffe-helper Show documentation
Show all versions of java-spiffe-helper Show documentation
Java SPIFFE Library Helper module to store X.509 SVIDs and Bundles in a Java KeyStore in disk
package io.spiffe.helper.keystore;
import lombok.Builder;
import lombok.Value;
import java.security.cert.X509Certificate;
@Value
class AuthorityEntry {
String alias;
X509Certificate certificate;
@Builder
AuthorityEntry(
final String alias,
final X509Certificate certificate) {
this.alias = alias;
this.certificate = certificate;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy