public class HandshakeInfo
extends java.lang.Object
WebSocketSession
session.WebSocketSession.getHandshakeInfo()
Constructor and Description |
---|
HandshakeInfo(java.net.URI uri,
HttpHeaders headers,
reactor.core.publisher.Mono<java.security.Principal> principal,
java.lang.String protocol)
Constructor with information about the handshake.
|
Modifier and Type | Method and Description |
---|---|
HttpHeaders |
getHeaders()
Return the handshake HTTP headers.
|
reactor.core.publisher.Mono<java.security.Principal> |
getPrincipal()
Return the principal associated with the handshake HTTP request.
|
java.lang.String |
getSubProtocol()
The sub-protocol negotiated at handshake time, or
null if none. |
java.net.URI |
getUri()
Return the URL for the WebSocket endpoint.
|
java.lang.String |
toString() |
public HandshakeInfo(java.net.URI uri, HttpHeaders headers, reactor.core.publisher.Mono<java.security.Principal> principal, @Nullable java.lang.String protocol)
uri
- the endpoint URLheaders
- request headers for server or response headers or clientprincipal
- the principal for the sessionprotocol
- the negotiated sub-protocol (may be null
)public java.net.URI getUri()
public HttpHeaders getHeaders()
public reactor.core.publisher.Mono<java.security.Principal> getPrincipal()
@Nullable public java.lang.String getSubProtocol()
null
if none.public java.lang.String toString()
toString
in class java.lang.Object