Interface ResponseEntity.HeadersBuilder<B extends ResponseEntity.HeadersBuilder<B>>

Type Parameters:
B - the builder subclass
All Known Subinterfaces:
ResponseEntity.BodyBuilder
Enclosing class:
ResponseEntity<T>

public static interface ResponseEntity.HeadersBuilder<B extends ResponseEntity.HeadersBuilder<B>>
Defines a builder that adds headers to the response entity.
Since:
4.1
  • Method Summary

    Modifier and Type
    Method
    Description
    allow(HttpMethod... allowedMethods)
    Set the set of allowed HTTP methods, as specified by the Allow header.
    Build the response entity with no body.
    cacheControl(CacheControl cacheControl)
    Set the caching directives for the resource, as specified by the HTTP 1.1 Cache-Control header.
    eTag(String etag)
    Set the entity tag of the body, as specified by the ETag header.
    header(String headerName, String... headerValues)
    Add the given, single header value under the given name.
    headers(Consumer<HttpHeaders> headersConsumer)
    Manipulate this entity's headers with the given consumer.
    Copy the given headers into the entity's headers map.
    lastModified(long lastModified)
    Set the time the resource was last changed, as specified by the Last-Modified header.
    lastModified(Instant lastModified)
    Set the time the resource was last changed, as specified by the Last-Modified header.
    Set the time the resource was last changed, as specified by the Last-Modified header.
    location(URI location)
    Set the location of a resource, as specified by the Location header.
    varyBy(String... requestHeaders)
    Configure one or more request header names (e.g.
  • Method Details

    • header

      B header(String headerName, String... headerValues)
      Add the given, single header value under the given name.
      Parameters:
      headerName - the header name
      headerValues - the header value(s)
      Returns:
      this builder
      See Also:
    • headers

      B headers(@Nullable HttpHeaders headers)
      Copy the given headers into the entity's headers map.
      Parameters:
      headers - the existing HttpHeaders to copy from
      Returns:
      this builder
      Since:
      4.1.2
      See Also:
    • headers

      B headers(Consumer<HttpHeaders> headersConsumer)
      Manipulate this entity'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 other HttpHeaders methods.
      Parameters:
      headersConsumer - a function that consumes the HttpHeaders
      Returns:
      this builder
      Since:
      5.2
    • allow

      B allow(HttpMethod... allowedMethods)
      Set the set of allowed HTTP methods, as specified by the Allow header.
      Parameters:
      allowedMethods - the allowed methods
      Returns:
      this builder
      See Also:
    • eTag

      B eTag(String etag)
      Set the entity tag of the body, as specified by the ETag header.
      Parameters:
      etag - the new entity tag
      Returns:
      this builder
      See Also:
    • lastModified

      B lastModified(ZonedDateTime lastModified)
      Set the time the resource was last changed, as specified by the Last-Modified header.
      Parameters:
      lastModified - the last modified date
      Returns:
      this builder
      Since:
      5.1.4
      See Also:
    • lastModified

      B lastModified(Instant lastModified)
      Set the time the resource was last changed, as specified by the Last-Modified header.
      Parameters:
      lastModified - the last modified date
      Returns:
      this builder
      Since:
      5.1.4
      See Also:
    • lastModified

      B lastModified(long lastModified)
      Set the time the resource was last changed, as specified by the Last-Modified header.

      The date should be specified as the number of milliseconds since January 1, 1970 GMT.

      Parameters:
      lastModified - the last modified date
      Returns:
      this builder
      See Also:
    • location

      B location(URI location)
      Set the location of a resource, as specified by the Location header.
      Parameters:
      location - the location
      Returns:
      this builder
      See Also:
    • cacheControl

      B cacheControl(CacheControl cacheControl)
      Set the caching directives for the resource, as specified by the HTTP 1.1 Cache-Control header.

      A CacheControl instance can be built like CacheControl.maxAge(3600).cachePublic().noTransform().

      Parameters:
      cacheControl - a builder for cache-related HTTP response headers
      Returns:
      this builder
      Since:
      4.2
      See Also:
    • varyBy

      B varyBy(String... requestHeaders)
      Configure one or more request header names (e.g. "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
      Since:
      4.3
    • build

      <T> ResponseEntity<T> build()
      Build the response entity with no body.
      Returns:
      the response entity
      See Also: