Uses of Class
com.sun.net.httpserver.HttpsServer
- 
Packages that use HttpsServer Package Description com.sun.net.httpserver Provides a simple high-level Http server API, which can be used to build embedded HTTP servers.com.sun.net.httpserver.spi 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.httpserverMethods in com.sun.net.httpserver that return HttpsServer Modifier and Type Method Description static HttpsServerHttpsServer. create()creates a HttpsServer instance which is initially not bound to any local address/port.static HttpsServerHttpsServer. create(InetSocketAddress addr, int backlog)Create aHttpsServerinstance which will bind to the specifiedInetSocketAddress(IP address and port number) A maximum backlog can also be specified.
- 
Uses of HttpsServer in com.sun.net.httpserver.spiMethods in com.sun.net.httpserver.spi that return HttpsServer Modifier and Type Method Description abstract HttpsServerHttpServerProvider. createHttpsServer(InetSocketAddress addr, int backlog)creates a HttpsServer from this provider
 
-