- java.lang.Object
-
- com.sun.net.httpserver.HttpExchange
-
- com.sun.net.httpserver.HttpsExchange
-
public abstract class HttpsExchange extends HttpExchange
此类封装了收到的HTTPS请求和在一个交换中生成的响应,并定义了特定于HTTPS协议的HttpExchange扩展。- 从以下版本开始:
- 1.6
-
-
构造方法摘要
构造方法 Modifier Constructor 描述 protected
HttpsExchange()
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 abstract SSLSession
getSSLSession()
获得SSLSession用于此交换。-
Methods inherited from class com.sun.net.httpserver.HttpExchange
close, getAttribute, getHttpContext, getLocalAddress, getPrincipal, getProtocol, getRemoteAddress, getRequestBody, getRequestHeaders, getRequestMethod, getRequestURI, getResponseBody, getResponseCode, getResponseHeaders, sendResponseHeaders, setAttribute, setStreams
-
-
-
-
方法详细信息
-
getSSLSession
public abstract SSLSession getSSLSession()
获得SSLSession用于此交换。- 结果
- SSLSession
-
-