/*
* Copyright (c) 2011-2017 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.net.impl.KeyStoreHelper;
import javax.net.ssl.TrustManager;
import javax.net.ssl.TrustManagerFactory;
import java.util.function.Function;
Certification authority configuration options.
Author: Julien Viet
/**
* Certification authority configuration options.
*
* @author <a href="mailto:julien@julienviet.com">Julien Viet</a>
*/
public interface TrustOptions {
Returns: a copy of these options
/**
* @return a copy of these options
*/
@SuppressWarnings("deprecation")
default TrustOptions copy() {
return clone();
}
Returns: a copy of these options Deprecated: use copy()
instead
/**
* @return a copy of these options
* @deprecated use {@link #copy()} instead
*/
@Deprecated
TrustOptions clone();
Create and return the trust manager factory for these options.
The returned trust manager factory should be already initialized and ready to use.
Params: - vertx – the vertx instance
Returns: the trust manager factory
/**
* 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 TrustManagerFactory
instance. The returned 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. The returned function may return null
in which case getTrustManagerFactory(Vertx)
is used as fallback. Params: - vertx – the vertx instance
Returns: the trustManager
/**
* 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;
}
}