use of org.eclipse.jetty.server.ssl.SslConnector in project qi4j-sdk by Qi4j.
the class SecureJettyMixin method buildConnector.
@Override
protected Connector buildConnector() {
SslConnector connector = new SslSelectChannelConnector(new SslContextFactory());
JettyConfigurationHelper.configureSslConnector(connector, configuration.get());
return connector;
}
Aggregations