Interface ServerResponse.HeadersBuilder<B extends ServerResponse.HeadersBuilder<B>>
- Type Parameters:
- B- the builder subclass
- All Known Subinterfaces:
- ServerResponse.BodyBuilder
- Enclosing interface:
- ServerResponse
public static interface ServerResponse.HeadersBuilder<B extends ServerResponse.HeadersBuilder<B>>
Defines a builder that adds headers to the response.
- 
Method SummaryModifier and TypeMethodDescriptionallow(Set<HttpMethod> allowedMethods) Set the set of allowedHTTP methods, as specified by theAllowheader.allow(HttpMethod... allowedMethods) Set the set of allowedHTTP methods, as specified by theAllowheader.reactor.core.publisher.Mono<ServerResponse>build()Build the response entity with no body.reactor.core.publisher.Mono<ServerResponse>build(BiFunction<ServerWebExchange, ServerResponse.Context, reactor.core.publisher.Mono<Void>> writeFunction) Build the response entity with a custom writer function.reactor.core.publisher.Mono<ServerResponse>Build the response entity with no body.cacheControl(CacheControl cacheControl) Set the caching directives for the resource, as specified by the HTTP 1.1Cache-Controlheader.cookie(ResponseCookie cookie) Add the given cookie to the response.cookies(Consumer<MultiValueMap<String, ResponseCookie>> cookiesConsumer) Manipulate this response's cookies with the given consumer.Set the entity tag of the body, as specified by theETagheader.Add the given header value(s) under the given name.headers(Consumer<HttpHeaders> headersConsumer) Manipulate this response's headers with the given consumer.lastModified(Instant lastModified) Set the time the resource was last changed, as specified by theLast-Modifiedheader.lastModified(ZonedDateTime lastModified) Set the time the resource was last changed, as specified by theLast-Modifiedheader.Set the location of a resource, as specified by theLocationheader.Configure one or more request header names (for example, "Accept-Language") to add to the "Vary" response header to inform clients that the response is subject to content negotiation and variances based on the value of the given request headers.
- 
Method Details- 
headerAdd the given header value(s) under the given name.- Parameters:
- headerName- the header name
- headerValues- the header value(s)
- Returns:
- this builder
- See Also:
 
- 
headersManipulate this response's headers with the given consumer. The headers provided to the consumer are "live", so that the consumer can be used to overwrite existing header values, remove values, or use any of the otherHttpHeadersmethods.- Parameters:
- headersConsumer- a function that consumes the- HttpHeaders
- Returns:
- this builder
 
- 
cookieAdd the given cookie to the response.- Parameters:
- cookie- the cookie to add
- Returns:
- this builder
 
- 
cookiesManipulate this response's cookies with the given consumer. The cookies provided to the consumer are "live", so that the consumer can be used to overwrite existing cookies, remove cookies, or use any of the otherMultiValueMapmethods.- Parameters:
- cookiesConsumer- a function that consumes the cookies
- Returns:
- this builder
 
- 
allowSet the set of allowedHTTP methods, as specified by theAllowheader.- Parameters:
- allowedMethods- the allowed methods
- Returns:
- this builder
- See Also:
 
- 
allowSet the set of allowedHTTP methods, as specified by theAllowheader.- Parameters:
- allowedMethods- the allowed methods
- Returns:
- this builder
- See Also:
 
- 
eTagSet the entity tag of the body, as specified by theETagheader.- Parameters:
- eTag- the new entity tag
- Returns:
- this builder
- See Also:
 
- 
lastModifiedSet the time the resource was last changed, as specified by theLast-Modifiedheader.- Parameters:
- lastModified- the last modified date
- Returns:
- this builder
- See Also:
 
- 
lastModifiedSet the time the resource was last changed, as specified by theLast-Modifiedheader.- Parameters:
- lastModified- the last modified date
- Returns:
- this builder
- Since:
- 5.1.4
- See Also:
 
- 
locationSet the location of a resource, as specified by theLocationheader.- Parameters:
- location- the location
- Returns:
- this builder
- See Also:
 
- 
cacheControlSet the caching directives for the resource, as specified by the HTTP 1.1Cache-Controlheader.A CacheControlinstance can be built likeCacheControl.maxAge(3600).cachePublic().noTransform().- Parameters:
- cacheControl- a builder for cache-related HTTP response headers
- Returns:
- this builder
- See Also:
 
- 
varyByConfigure one or more request header names (for example, "Accept-Language") to add to the "Vary" response header to inform clients that the response is subject to content negotiation and variances based on the value of the given request headers. The configured request header names are added only if not already present in the response "Vary" header.- Parameters:
- requestHeaders- request header names
- Returns:
- this builder
 
- 
buildreactor.core.publisher.Mono<ServerResponse> build()Build the response entity with no body.
- 
buildBuild the response entity with no body.The response will be committed when the given voidPublishercompletes.- Parameters:
- voidPublisher- the publisher to indicate when the response should be committed
 
- 
buildreactor.core.publisher.Mono<ServerResponse> build(BiFunction<ServerWebExchange, ServerResponse.Context, reactor.core.publisher.Mono<Void>> writeFunction) Build the response entity with a custom writer function.- Parameters:
- writeFunction- the function used to write to the- ServerWebExchange
 
 
-