com.github.dockerjava.core.SSLConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.github.dockerjava.core;
import java.security.*;
import javax.net.ssl.SSLContext;
/**
* Get an SSL Config. Allows for various different implementations.
*/
public interface SSLConfig {
/**
* Get the SSL Context, from wherever it comes (file, keystore).
* @return an SSL context.
*/
SSLContext getSSLContext()
throws KeyManagementException, UnrecoverableKeyException, NoSuchAlgorithmException,
KeyStoreException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy