Class HttpsServer
- java.lang.Object
-
- com.sun.net.httpserver.HttpServer
-
- com.sun.net.httpserver.HttpsServer
public abstract class HttpsServer extends HttpServer
This class is an extension of HttpServer
which provides support for HTTPS.
A HttpsServer must have an associated HttpsConfigurator
object which is used to establish the SSL configuration for the SSL connections.
All other configuration is the same as for HttpServer.
- Since:
- 1.6
Constructors
Modifier | Constructor | Description |
---|---|---|
protected | HttpsServer() |
Methods
Modifier and Type | Method | Description |
---|---|---|
static HttpsServer | create() | creates a HttpsServer instance which is initially not bound to any local address/port. |
static HttpsServer | create(InetSocketAddress addr,
int backlog) | Create a |
abstract HttpsConfigurator | getHttpsConfigurator() | Gets this server's |
abstract void | setHttpsConfigurator(HttpsConfigurator config) | Sets this server's |
Methods declared in class com.sun.net.httpserver.HttpServer
bind, createContext, createContext, getAddress, getExecutor, removeContext, removeContext, setExecutor, start, stop
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Constructors
HttpsServer
protected HttpsServer()
Methods
create
public static HttpsServer create() throws IOException
creates a HttpsServer instance which is initially not bound to any local address/port. The HttpsServer is acquired from the currently installed HttpServerProvider
The server must be bound using HttpServer.bind(InetSocketAddress,int)
before it can be used. The server must also have a HttpsConfigurator established with setHttpsConfigurator(HttpsConfigurator)
- Throws:
IOException
create
public static HttpsServer create(InetSocketAddress addr, int backlog) throws IOException
Create a HttpsServer
instance which will bind to the specified InetSocketAddress
(IP address and port number) A maximum backlog can also be specified. This is the maximum number of queued incoming connections to allow on the listening socket. Queued TCP connections exceeding this limit may be rejected by the TCP implementation. The HttpsServer is acquired from the currently installed HttpServerProvider
The server must have a HttpsConfigurator established with setHttpsConfigurator(HttpsConfigurator)
- Parameters:
-
addr
- the address to listen on, ifnull
then bind() must be called to set the address -
backlog
- the socket backlog. If this value is less than or equal to zero, then a system default value is used. - Throws:
-
BindException
- if the server cannot bind to the requested address, or if the server is already bound. IOException
setHttpsConfigurator
public abstract void setHttpsConfigurator(HttpsConfigurator config)
Sets this server's HttpsConfigurator
object.
- Parameters:
-
config
- the HttpsConfigurator to set - Throws:
-
NullPointerException
- if config is null.
getHttpsConfigurator
public abstract HttpsConfigurator getHttpsConfigurator()
Gets this server's HttpsConfigurator
object, if it has been set.
- Returns:
- the HttpsConfigurator for this server, or
null
if not set.
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/jdk.httpserver/com/sun/net/httpserver/HttpsServer.html