Package org.restlet.engine.ssl
Class SslContextFactory
- java.lang.Object
-
- org.restlet.engine.ssl.SslContextFactory
-
- Direct Known Subclasses:
DefaultSslContextFactory
public abstract class SslContextFactory extends java.lang.ObjectThis is an abstract factory that produces configured and initialized instances of SSLContext. Concrete implementations of SslContextFactory must implementcreateSslContext(), which should typically consist of:SSLContext sslContext = SSLContext.getInstance(...); ... sslContext.init(..., ..., ...); return sslContext;- See Also:
SSLContext
-
-
Constructor Summary
Constructors Constructor Description SslContextFactory()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract javax.net.ssl.SSLContextcreateSslContext()Creates a configured and initialized SSLContext.abstract voidinit(Series<Parameter> parameters)Initialize the factory with the given connector parameters.
-