io.quarkus.tls.runtime.TrustStoreAndTrustOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-tls-registry Show documentation
Show all versions of quarkus-tls-registry Show documentation
An internal TLS certificate registry.
package io.quarkus.tls.runtime;
import java.security.KeyStore;
import io.vertx.core.net.TrustOptions;
/**
* A structure storing a trust store and its associated Vert.x options.
*/
public final class TrustStoreAndTrustOptions {
public final KeyStore trustStore;
public final TrustOptions options;
public TrustStoreAndTrustOptions(KeyStore keyStore, TrustOptions options) {
this.trustStore = keyStore;
this.options = options;
}
}