@API(status=STABLE) public abstract class HeaderStage extends BodyStage
| Constructor and Description |
|---|
HeaderStage() |
| Modifier and Type | Method and Description |
|---|---|
abstract HeaderStage |
accept(Collection<org.springframework.http.MediaType> acceptableMediaTypes) |
abstract HeaderStage |
accept(org.springframework.http.MediaType acceptableMediaType,
org.springframework.http.MediaType... acceptableMediaTypes) |
abstract HeaderStage |
contentType(org.springframework.http.MediaType contentType) |
abstract HeaderStage |
header(String name,
String value) |
abstract HeaderStage |
headers(Map<String,? extends Collection<String>> headers) |
abstract HeaderStage |
headers(com.google.common.collect.Multimap<String,String> headers) |
abstract HeaderStage |
ifMatch(Collection<String> entityTags) |
abstract HeaderStage |
ifMatch(String entityTag,
String... entityTags) |
abstract HeaderStage |
ifModifiedSince(OffsetDateTime since) |
abstract HeaderStage |
ifNoneMatch(Collection<String> entityTags) |
abstract HeaderStage |
ifNoneMatch(String entityTag,
String... entityTags) |
abstract HeaderStage |
ifUnmodifiedSince(OffsetDateTime since) |
call, dispatch, dispatch, dispatchpublic abstract HeaderStage accept(org.springframework.http.MediaType acceptableMediaType, org.springframework.http.MediaType... acceptableMediaTypes)
public abstract HeaderStage accept(Collection<org.springframework.http.MediaType> acceptableMediaTypes)
public abstract HeaderStage contentType(org.springframework.http.MediaType contentType)
public abstract HeaderStage ifModifiedSince(OffsetDateTime since)
public abstract HeaderStage ifUnmodifiedSince(OffsetDateTime since)
public abstract HeaderStage ifNoneMatch(String entityTag, String... entityTags)
public abstract HeaderStage ifNoneMatch(Collection<String> entityTags)
public abstract HeaderStage ifMatch(String entityTag, String... entityTags)
public abstract HeaderStage ifMatch(Collection<String> entityTags)
public abstract HeaderStage header(String name, String value)
public abstract HeaderStage headers(com.google.common.collect.Multimap<String,String> headers)
public abstract HeaderStage headers(Map<String,? extends Collection<String>> headers)
Copyright © 2015–2020 Zalando SE. All rights reserved.