Interface RenderingResponse
- All Superinterfaces:
 ServerResponse
Rendering-specific subtype of 
ServerResponse that exposes model and template data.- Since:
 - 5.2
 - Author:
 - Arjen Poutsma
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceDefines a builder forRenderingResponse.Nested classes/interfaces inherited from interface org.springframework.web.servlet.function.ServerResponse
ServerResponse.BodyBuilder, ServerResponse.Context, ServerResponse.HeadersBuilder<B extends ServerResponse.HeadersBuilder<B>>, ServerResponse.SseBuilder, ServerResponse.StreamBuilder - 
Method Summary
Modifier and TypeMethodDescriptionstatic RenderingResponse.BuilderCreate a builder with the given template name.static RenderingResponse.Builderfrom(RenderingResponse other) Create a builder with the template name, status code, headers and model of the given response.model()Return the unmodifiable model map.name()Return the name of the template to be rendered.Methods inherited from interface org.springframework.web.servlet.function.ServerResponse
cookies, headers, rawStatusCode, statusCode, writeTo 
- 
Method Details
- 
name
String name()Return the name of the template to be rendered. - 
model
Return the unmodifiable model map. - 
from
Create a builder with the template name, status code, headers and model of the given response.- Parameters:
 other- the response to copy the values from- Returns:
 - the created builder
 
 - 
create
Create a builder with the given template name.- Parameters:
 name- the name of the template to render- Returns:
 - the created builder
 
 
 -