All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fitbur.github.dockerjava.core.SSLConfig Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
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