Interface RenderingResponse

All Superinterfaces:
ServerResponse

public interface RenderingResponse extends ServerResponse
Rendering-specific subtype of ServerResponse that exposes model and template data.
Since:
5.2
Author:
Arjen Poutsma
  • Method Details

    • name

      String name()
      Return the name of the template to be rendered.
    • model

      Map<String,Object> 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

      static RenderingResponse.Builder create(String name)
      Create a builder with the given template name.
      Parameters:
      name - the name of the template to render
      Returns:
      the created builder