org.elasticsearch.common.ssl.SslTrustConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-ssl-config Show documentation
Show all versions of elasticsearch-ssl-config Show documentation
Elasticsearch subproject :libs:elasticsearch-ssl-config
The newest version!
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the "Elastic License
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
* Public License v 1"; you may not use this file except in compliance with, at
* your election, the "Elastic License 2.0", the "GNU Affero General Public
* License v3.0 only", or the "Server Side Public License, v 1".
*/
package org.elasticsearch.common.ssl;
import java.nio.file.Path;
import java.security.cert.Certificate;
import java.util.Collection;
import javax.net.ssl.X509ExtendedTrustManager;
/**
* An interface for building a trust manager at runtime.
* The method for constructing the trust manager is implementation dependent.
*/
public interface SslTrustConfig {
/**
* @return A collection of files that are read by this config object.
* The {@link #createTrustManager()} method will read these files dynamically, so the behaviour of this trust config may change if
* any of these files are modified.
*/
Collection getDependentFiles();
/**
* @return A new {@link X509ExtendedTrustManager}.
* @throws SslConfigException if there is a problem configuring the trust manager.
*/
X509ExtendedTrustManager createTrustManager();
/**
* @return A collection of {@link Certificate certificates} used by this config, excluding those shipped with the JDK
*/
Collection extends StoredCertificate> getConfiguredCertificates();
/**
* @return {@code true} if this trust config is based on the system default truststore
*/
default boolean isSystemDefault() {
return false;
}
}