io.vertx.core.net.TrustOptions.java Source code

Java tutorial

Introduction

Here is the source code for io.vertx.core.net.TrustOptions.java

Source

/*
 * Copyright (c) 2011-2019 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */

package io.vertx.core.net;

import io.vertx.core.Vertx;
import io.vertx.core.impl.VertxInternal;
import io.vertx.core.json.JsonObject;
import io.vertx.core.net.impl.KeyStoreHelper;

import javax.net.ssl.TrustManager;
import javax.net.ssl.TrustManagerFactory;
import java.util.function.Function;

/**
 * Certification authority configuration options.
 *
 * @author <a href="mailto:julien@julienviet.com">Julien Viet</a>
 */
public interface TrustOptions {

    /**
     * @return a copy of these options
     */
    TrustOptions copy();

    /**
     * Create and return the trust manager factory for these options.
     * <p>
     * The returned trust manager factory should be already initialized and ready to use.
     *
     * @param vertx the vertx instance
     * @return the trust manager factory
     */
    default TrustManagerFactory getTrustManagerFactory(Vertx vertx) throws Exception {
        return KeyStoreHelper.create((VertxInternal) vertx, this).getTrustMgrFactory((VertxInternal) vertx);
    }

    /**
     * Returns a function that maps SNI server names to a {@link TrustManagerFactory} instance.
     *
     * The returned {@code TrustManagerFactory} must already be initialized and ready to use.
     *
     * The mapper is only used when the server has SNI enabled and the client indicated a server name.
     * <p/>
     * The returned function may return {@code null} in which case {@link #getTrustManagerFactory(Vertx)} is used as fallback.
     *
     * @param vertx the vertx instance
     * @return the trustManager
     */
    default Function<String, TrustManager[]> trustManagerMapper(Vertx vertx) throws Exception {
        KeyStoreHelper helper = KeyStoreHelper.create((VertxInternal) vertx, this);
        return helper != null ? helper::getTrustMgr : null;
    }

    JsonObject toJson();

}