Interface EntityResponse<T>
- Type Parameters:
T- the entity type
- All Superinterfaces:
ServerResponse
public interface EntityResponse<T> extends ServerResponse
Entity-specific subtype ofServerResponsethat exposes entity data.- Since:
- 5.0
- Author:
- Arjen Poutsma, Juergen Hoeller
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceEntityResponse.Builder<T>Defines a builder forEntityResponse.Nested classes/interfaces inherited from interface org.springframework.web.reactive.function.server.ServerResponse
ServerResponse.BodyBuilder, ServerResponse.Context, ServerResponse.HeadersBuilder<B extends ServerResponse.HeadersBuilder<B>>
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description Tentity()Return the entity that makes up this response.static <T> EntityResponse.Builder<T>fromObject(T body)Create a builder with the given object.static <T> EntityResponse.Builder<T>fromProducer(T producer, Class<?> elementClass)Create a builder with the given producer.static <T> EntityResponse.Builder<T>fromProducer(T producer, ParameterizedTypeReference<?> typeReference)Create a builder with the given producer.static <T,P extends org.reactivestreams.Publisher<T>>
EntityResponse.Builder<P>fromPublisher(P publisher, Class<T> elementClass)Create a builder with the given publisher.static <T,P extends org.reactivestreams.Publisher<T>>
EntityResponse.Builder<P>fromPublisher(P publisher, ParameterizedTypeReference<T> typeReference)Create a builder with the given publisher.BodyInserter<T,? super ServerHttpResponse>inserter()Return theBodyInserterthat writes the entity to the output stream.Methods inherited from interface org.springframework.web.reactive.function.server.ServerResponse
cookies, headers, rawStatusCode, statusCode, writeTo
Method Detail
inserter
BodyInserter<T,? super ServerHttpResponse> inserter()
Return theBodyInserterthat writes the entity to the output stream.
fromObject
static <T> EntityResponse.Builder<T> fromObject(T body)
Create a builder with the given object.- Type Parameters:
T- the type of the body- Parameters:
body- the object that represents the body of the response- Returns:
- the created builder
fromProducer
static <T> EntityResponse.Builder<T> fromProducer(T producer, Class<?> elementClass)
Create a builder with the given producer.- Parameters:
producer- the producer that represents the body of the responseelementClass- the class of elements contained in the publisher- Returns:
- the created builder
- Since:
- 5.2
fromProducer
static <T> EntityResponse.Builder<T> fromProducer(T producer, ParameterizedTypeReference<?> typeReference)
Create a builder with the given producer.- Parameters:
producer- the producer that represents the body of the responsetypeReference- the type of elements contained in the producer- Returns:
- the created builder
- Since:
- 5.2
fromPublisher
static <T,P extends org.reactivestreams.Publisher<T>> EntityResponse.Builder<P> fromPublisher(P publisher, Class<T> elementClass)
Create a builder with the given publisher.- Type Parameters:
T- the type of the elements contained in the publisherP- the type of thePublisher- Parameters:
publisher- the publisher that represents the body of the responseelementClass- the class of elements contained in the publisher- Returns:
- the created builder
fromPublisher
static <T,P extends org.reactivestreams.Publisher<T>> EntityResponse.Builder<P> fromPublisher(P publisher, ParameterizedTypeReference<T> typeReference)
Create a builder with the given publisher.- Type Parameters:
T- the type of the elements contained in the publisherP- the type of thePublisher- Parameters:
publisher- the publisher that represents the body of the responsetypeReference- the type of elements contained in the publisher- Returns:
- the created builder