Uses of Interface
org.springframework.http.server.reactive.SslInfo
Packages that use SslInfo
Package
Description
Abstractions for reactive HTTP server support including a
ServerHttpRequest
and
ServerHttpResponse
along with an
HttpHandler
for processing.Mock implementations of reactive HTTP server contracts.
Support for testing Spring WebFlux server endpoints via
WebTestClient
.-
Uses of SslInfo in org.springframework.http.server.reactive
Methods in org.springframework.http.server.reactive that return SslInfoModifier and TypeMethodDescriptionstatic SslInfo
CreateSslInfo
configured with the supplied session ID.static SslInfo
SslInfo.from
(String sessionId, X509Certificate... peerCertificates) CreateSslInfo
configured with the supplied session ID and certificates.AbstractServerHttpRequest.getSslInfo()
ServerHttpRequest.getSslInfo()
Return the SSL session information if the request has been transmitted over a secure protocol including SSL certificates, if available.ServerHttpRequestDecorator.getSslInfo()
AbstractServerHttpRequest.initSslInfo()
Obtain SSL session information from the underlying "native" request.Methods in org.springframework.http.server.reactive with parameters of type SslInfoModifier and TypeMethodDescriptionSet the SSL session information. -
Uses of SslInfo in org.springframework.mock.http.server.reactive
Methods in org.springframework.mock.http.server.reactive that return SslInfoMethods in org.springframework.mock.http.server.reactive with parameters of type SslInfo -
Uses of SslInfo in org.springframework.test.web.reactive.server
Methods in org.springframework.test.web.reactive.server with parameters of type SslInfoModifier and TypeMethodDescriptionstatic UserWebTestClientConfigurer
Create a configurer with the givenSslInfo
.<T extends B>
TSet or reset SSL session information to assign to mock server requests.Constructors in org.springframework.test.web.reactive.server with parameters of type SslInfoModifierConstructorDescriptionHttpHandlerConnector
(HttpHandler handler, @Nullable SslInfo sslInfo) Construct anHttpHandlerConnector
with the suppliedSslInfo
andHttpHandler
to handle requests with.