Class SslContextFactory

java.lang.Object
org.restlet.engine.ssl.SslContextFactory
Direct Known Subclasses:
DefaultSslContextFactory

public abstract class SslContextFactory extends Object
This is an abstract factory that produces configured and initialized instances of SSLContext. Concrete implementations of SslContextFactory must implement createSslContext(), which should typically consist of:
    SSLContext sslContext = SSLContext.getInstance(...);
    ...
    sslContext.init(..., ..., ...);
    return sslContext;
 
Author:
Bruno Harbulot
See Also:
  • Constructor Details

    • SslContextFactory

      public SslContextFactory()
  • Method Details

    • createSslContext

      public abstract SSLContext createSslContext() throws Exception
      Creates a configured and initialized SSLContext.
      Returns:
      A configured and initialized SSLContext.
      Throws:
      Exception
    • init

      public abstract void init(Series<Parameter> parameters)
      Initialize the factory with the given connector parameters.
      Parameters:
      parameters - The connector parameters.