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

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

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