Package com.ibm.wsspi.http.ee8
Interface Http2InboundConnection
-
- All Superinterfaces:
HttpInboundConnection
public interface Http2InboundConnection extends HttpInboundConnection
Representation of an inbound HTTP connection that the dispatcher will provide to containers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
handleHTTP2UpgradeRequest(java.util.Map<java.lang.String,java.lang.String> map)
Determine if a map of headers contains an http2 upgrade headerboolean
isHTTP2UpgradeRequest(java.util.Map<java.lang.String,java.lang.String> map, boolean checkEnabledOnly)
Determine if a request is an http2 upgrade request-
Methods inherited from interface com.ibm.wsspi.http.HttpInboundConnection
finish, getDateFormatter, getEncodingUtils, getLocalHostAddress, getLocalHostAlias, getLocalHostName, getLocalPort, getRemoteHostAddress, getRemoteHostName, getRemotePort, getRequest, getRequestedHost, getRequestedPort, getResponse, getSSLContext, getTrustedHeader, useTrustedHeaders
-
-
-
-
Method Detail
-
isHTTP2UpgradeRequest
boolean isHTTP2UpgradeRequest(java.util.Map<java.lang.String,java.lang.String> map, boolean checkEnabledOnly)
Determine if a request is an http2 upgrade request
-
handleHTTP2UpgradeRequest
boolean handleHTTP2UpgradeRequest(java.util.Map<java.lang.String,java.lang.String> map)
Determine if a map of headers contains an http2 upgrade header
-
-