com.fitbur.github.dockerjava.core.SSLConfig Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.core;
import java.security.KeyManagementException;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.UnrecoverableKeyException;
import javax.net.ssl.SSLContext;
/**
* Get an SSL Config. Allows for various different implementations.
*/
public interface SSLConfig {
/**
* Get the SSL Context, from wherever it com.fitbures (file, keystore).
*
* @return an SSL context.
*/
SSLContext getSSLContext() throws KeyManagementException, UnrecoverableKeyException, NoSuchAlgorithmException,
KeyStoreException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy