Package org.apache.tomcat.util.net
Class ServletConnectionImpl
java.lang.Object
org.apache.tomcat.util.net.ServletConnectionImpl
- All Implemented Interfaces:
ServletConnection
-
Constructor Summary
ConstructorDescriptionServletConnectionImpl
(String connectionId, String protocol, String protocolConnectionId, boolean secure) -
Method Summary
Modifier and TypeMethodDescriptionObtain a unique (within the lifetime of the JVM) identifier string for the network connection to the JVM that is being used for theServletRequest
from which thisServletConnection
was obtained.Obtain the name of the protocol as presented to the server after the removal, if present, of any TLS or similar encryption.Obtain the connection identifier for the network connection to the server that is being used for theServletRequest
from which thisServletConnection
was obtained as defined by the protocol in use.boolean
isSecure()
Determine whether or not the incoming network connection to the server used encryption or not.
-
Constructor Details
-
ServletConnectionImpl
-
-
Method Details
-
getConnectionId
Description copied from interface:jakarta.servlet.ServletConnection
Obtain a unique (within the lifetime of the JVM) identifier string for the network connection to the JVM that is being used for theServletRequest
from which thisServletConnection
was obtained.There is no defined format for this string. The format is implementation dependent.
- Specified by:
getConnectionId
in interfaceServletConnection
- Returns:
- A unique identifier for the network connection
-
getProtocol
Description copied from interface:jakarta.servlet.ServletConnection
Obtain the name of the protocol as presented to the server after the removal, if present, of any TLS or similar encryption. This may not be the same as the protocol seen by the application. For example, a reverse proxy may present AJP whereas the application will see HTTP 1.1.If the protocol has an entry in the IANA registry for ALPN names then the identification sequence, in string form, must be returned. Registered identification sequences MUST only be used for the associated protocol. Return values for other protocols are implementation dependent. Unknown protocols should return the string "unknown".
- Specified by:
getProtocol
in interfaceServletConnection
- Returns:
- The name of the protocol presented to the server after decryption of TLS, or similar encryption, if any.
-
getProtocolConnectionId
Description copied from interface:jakarta.servlet.ServletConnection
Obtain the connection identifier for the network connection to the server that is being used for theServletRequest
from which thisServletConnection
was obtained as defined by the protocol in use. Note that some protocols do not define such an identifier.Examples of protocol provided connection identifiers include:
- HTTP 1.x
- None, so the empty string should be returned
- HTTP 2
- None, so the empty string should be returned
- HTTP 3
- The QUIC connection ID
- AJP
- None, so the empty string should be returned
- Specified by:
getProtocolConnectionId
in interfaceServletConnection
- Returns:
- The connection identifier if one is defined, otherwise an empty string
-
isSecure
public boolean isSecure()Description copied from interface:jakarta.servlet.ServletConnection
Determine whether or not the incoming network connection to the server used encryption or not. Note that where a reverse proxy is used, the application may have a different view as to whether encryption is being used due to the use of headers likeX-Forwarded-Proto
.- Specified by:
isSecure
in interfaceServletConnection
- Returns:
true
if the incoming network connection used encryption, otherwisefalse
-