public abstract class SslContextFactory extends Object
createSslContext(), which should typically consist of:
SSLContext sslContext = SSLContext.getInstance(...);
...
sslContext.init(..., ..., ...);
return sslContext;
SSLContext| Constructor and Description |
|---|
SslContextFactory() |
| Modifier and Type | Method and Description |
|---|---|
abstract SSLContext |
createSslContext()
Creates a configured and initialized SSLContext.
|
abstract void |
init(Series<Parameter> parameters)
Initialize the factory with the given connector parameters.
|
public abstract SSLContext createSslContext() throws Exception
ExceptionCopyright © 2005–2025. All rights reserved.