pl.allegro.tech.hermes.common.ssl.SSLContextHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hermes-common Show documentation
Show all versions of hermes-common Show documentation
Fast and reliable message broker built on top of Kafka.
The newest version!
package pl.allegro.tech.hermes.common.ssl;
import javax.net.ssl.SSLContext;
import javax.net.ssl.TrustManager;
public final class SSLContextHolder {
private final SSLContext sslContext;
private final TrustManager[] trustManagers;
public SSLContextHolder(SSLContext sslContext, TrustManager[] trustManagers) {
this.sslContext = sslContext;
this.trustManagers = trustManagers;
}
public SSLContext getSslContext() {
return sslContext;
}
public TrustManager[] getTrustManagers() {
return trustManagers;
}
}