All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.tls.runtime.TrustStoreAndTrustOptions Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
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;

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy