- Enclosing class:
- EmbeddedWebServer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Configure an HTTPS server.
This interface is provided because
EmbeddedWebServer
,
when configured for HTTPS, does not provide direct access to
its HttpsServer
, but will create an
HttpsConfigurator
and this interface can be used to
implement its HttpsConfigurator.configure(HttpsParameters)
method.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
configure
(SSLContext context, HttpsParameters params) Configure an https server.
-
Method Details
-
configure
Configure an https server.- Parameters:
context
- theSSLContext
used to construct anHttpsConfigurator
params
- theHttpsParameters
used provided as an argument toHttpsConfigurator.configure(HttpsParameters)
.
-