Uses of Interface
org.springframework.web.reactive.function.server.ServerRequest.Headers
Packages that use ServerRequest.Headers Package Description org.springframework.mock.web.reactive.function.server Mock objects for the functional web framework.org.springframework.web.reactive.function.server Provides the types that make up Spring's functional web framework for Reactive environments.org.springframework.web.reactive.function.server.support Classes supporting theorg.springframework.web.reactive.function.serverpackage.Uses of ServerRequest.Headers in org.springframework.mock.web.reactive.function.server
Methods in org.springframework.mock.web.reactive.function.server that return ServerRequest.Headers Modifier and Type Method Description ServerRequest.HeadersMockServerRequest. headers()Uses of ServerRequest.Headers in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server that return ServerRequest.Headers Modifier and Type Method Description ServerRequest.HeadersServerRequest. headers()Get the headers of this request.Method parameters in org.springframework.web.reactive.function.server with type arguments of type ServerRequest.Headers Modifier and Type Method Description static RequestPredicateRequestPredicates. headers(Predicate<ServerRequest.Headers> headersPredicate)Return aRequestPredicatethat tests the request's headers against the given headers predicate.Uses of ServerRequest.Headers in org.springframework.web.reactive.function.server.support
Classes in org.springframework.web.reactive.function.server.support that implement ServerRequest.Headers Modifier and Type Class Description static classServerRequestWrapper.HeadersWrapperImplementation of theHeadersinterface that can be subclassed to adapt the headers in ahandler filter function.Methods in org.springframework.web.reactive.function.server.support that return ServerRequest.Headers Modifier and Type Method Description ServerRequest.HeadersServerRequestWrapper. headers()Constructors in org.springframework.web.reactive.function.server.support with parameters of type ServerRequest.Headers Constructor Description HeadersWrapper(ServerRequest.Headers headers)Create a newHeadersWrapperthat wraps the given request.