75767778798081828384
* @param secure * Indicates if the server supports HTTP or HTTPS. */ public JettyHandler(Server server, boolean secure) { if (secure) { this.helper = new HttpsServerHelper(server); } else { this.helper = new HttpServerHelper(server); } }