Uses of Class
com.sun.net.httpserver.HttpsServer
Package
Description
Provides a simple high-level Http server API, which can be used to build
embedded HTTP servers.
Provides a pluggable service provider interface, which allows the HTTP server
implementation to be replaced with other implementations.
-
Uses of HttpsServer in com.sun.net.httpserver
Modifier and TypeMethodDescriptionstatic HttpsServer
HttpsServer.create()
Creates aHttpsServer
instance which is initially not bound to any local address/port.static HttpsServer
HttpsServer.create
(InetSocketAddress addr, int backlog) Create aHttpsServer
instance which will bind to the specifiedInetSocketAddress
(IP address and port number).static HttpsServer
HttpsServer.create
(InetSocketAddress addr, int backlog, String path, HttpHandler handler, Filter... filters) Creates anHttpsServer
instance with an initial context. -
Uses of HttpsServer in com.sun.net.httpserver.spi
Modifier and TypeMethodDescriptionabstract HttpsServer
HttpServerProvider.createHttpsServer
(InetSocketAddress addr, int backlog) creates a HttpsServer from this provider