接口 RequestEntity.HeadersBuilder<B extends RequestEntity.HeadersBuilder<B>>

    • 方法详细资料

      • header

        B header​(String headerName,
                 String... headerValues)
        Add the given, single header value under the given name.
        参数:
        headerName - the header name
        headerValues - the header value(s)
        返回:
        this builder
        另请参阅:
        HttpHeaders.add(String, String)
      • 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.
        参数:
        headersConsumer - a function that consumes the HttpHeaders
        返回:
        this builder
        从以下版本开始:
        5.2
      • accept

        B accept​(MediaType... acceptableMediaTypes)
        Set the list of acceptable media types, as specified by the Accept header.
        参数:
        acceptableMediaTypes - the acceptable media types
      • acceptCharset

        B acceptCharset​(Charset... acceptableCharsets)
        Set the list of acceptable charsets, as specified by the Accept-Charset header.
        参数:
        acceptableCharsets - the acceptable charsets
      • ifModifiedSince

        B ifModifiedSince​(ZonedDateTime ifModifiedSince)
        Set the value of the If-Modified-Since header.
        参数:
        ifModifiedSince - the new value of the header
        从以下版本开始:
        5.1.4
      • ifModifiedSince

        B ifModifiedSince​(Instant ifModifiedSince)
        Set the value of the If-Modified-Since header.
        参数:
        ifModifiedSince - the new value of the header
        从以下版本开始:
        5.1.4
      • ifModifiedSince

        B ifModifiedSince​(long ifModifiedSince)
        Set the value of the If-Modified-Since header.

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

        参数:
        ifModifiedSince - the new value of the header
      • ifNoneMatch

        B ifNoneMatch​(String... ifNoneMatches)
        Set the values of the If-None-Match header.
        参数:
        ifNoneMatches - the new value of the header