Interface EntityResponse<T>
- Type Parameters:
- T- the entity type
- All Superinterfaces:
- ServerResponse
Entity-specific subtype of 
ServerResponse that exposes entity data.- Since:
- 5.2
- Author:
- Arjen Poutsma
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic interfaceDefines a builder forEntityResponse.Nested classes/interfaces inherited from interface org.springframework.web.servlet.function.ServerResponseServerResponse.BodyBuilder, ServerResponse.Context, ServerResponse.HeadersBuilder<B extends ServerResponse.HeadersBuilder<B>>, ServerResponse.SseBuilder, ServerResponse.StreamBuilder
- 
Method SummaryModifier and TypeMethodDescriptionentity()Return the entity that makes up this response.static <T> EntityResponse.Builder<T>fromObject(T t) Create a builder with the given object.static <T> EntityResponse.Builder<T>fromObject(T t, ParameterizedTypeReference<T> entityType) Create a builder with the given object and type reference.Methods inherited from interface org.springframework.web.servlet.function.ServerResponsecookies, headers, rawStatusCode, statusCode, writeTo
- 
Method Details- 
entityT entity()Return the entity that makes up this response.
- 
fromObjectCreate a builder with the given object.- Type Parameters:
- T- the type of element contained in the entity
- Parameters:
- t- the object that represents the body of the response
- Returns:
- the created builder
 
- 
fromObjectCreate a builder with the given object and type reference.- Type Parameters:
- T- the type of element contained in the entity
- Parameters:
- t- the object that represents the body of the response
- entityType- the type of the entity, used to capture the generic type
- Returns:
- the created builder
 
 
-