Class HttpsExchange
- java.lang.Object
-
- com.sun.net.httpserver.HttpExchange
-
- com.sun.net.httpserver.HttpsExchange
public abstract class HttpsExchange extends HttpExchange
This class encapsulates a HTTPS request received and a response to be generated in one exchange and defines the extensions to HttpExchange that are specific to the HTTPS protocol.
- Since:
- 1.6
Constructors
Modifier | Constructor | Description |
---|---|---|
protected | HttpsExchange() |
Methods
Modifier and Type | Method | Description |
---|---|---|
abstract SSLSession | getSSLSession() | Get the SSLSession for this exchange. |
Methods declared in class com.sun.net.httpserver.HttpExchange
close, getAttribute, getHttpContext, getLocalAddress, getPrincipal, getProtocol, getRemoteAddress, getRequestBody, getRequestHeaders, getRequestMethod, getRequestURI, getResponseBody, getResponseCode, getResponseHeaders, sendResponseHeaders, setAttribute, setStreams
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Constructors
HttpsExchange
protected HttpsExchange()
Methods
getSSLSession
public abstract SSLSession getSSLSession()
Get the SSLSession for this exchange.
- Returns:
- the SSLSession
© 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/HttpsExchange.html