Class AbstractStreamProvider

java.lang.Object
org.apache.catalina.tribes.membership.cloud.AbstractStreamProvider
All Implemented Interfaces:
StreamProvider
Direct Known Subclasses:
CertificateStreamProvider, InsecureStreamProvider, TokenStreamProvider

public abstract class AbstractStreamProvider extends Object implements StreamProvider
  • Field Details

    • sm

      protected static final StringManager sm
    • INSECURE_TRUST_MANAGERS

      protected static final TrustManager[] INSECURE_TRUST_MANAGERS
  • Constructor Details

    • AbstractStreamProvider

      public AbstractStreamProvider()
  • Method Details

    • getSocketFactory

      protected abstract SSLSocketFactory getSocketFactory()
      Returns:
      the socket factory, or null if not needed
    • openConnection

      public URLConnection openConnection(String url, Map<String,String> headers, int connectTimeout, int readTimeout) throws IOException
      Open URL connection to the specified URL.
      Parameters:
      url - the url
      headers - the headers map
      connectTimeout - connection timeout in ms
      readTimeout - read timeout in ms
      Returns:
      the URL connection
      Throws:
      IOException - when an error occurs
    • openStream

      public InputStream openStream(String url, Map<String,String> headers, int connectTimeout, int readTimeout) throws IOException
      Description copied from interface: StreamProvider
      Open stream to the specified URL.
      Specified by:
      openStream in interface StreamProvider
      Parameters:
      url - the url
      headers - the headers map
      connectTimeout - connection timeout in ms
      readTimeout - read timeout in ms
      Returns:
      the stream
      Throws:
      IOException - when an error occurs
    • configureCaCert

      protected static TrustManager[] configureCaCert(String caCertFile) throws Exception
      Throws:
      Exception