001package io.jstach.opt.spring.example.message;
002
003import io.jstach.jstache.JStache;
004
005/**
006 * Model using a configurer to add state.
007 *
008 * @author agentgt
009 */
010@JStache(path = "hello")
011public class MessagePage {
012
013        /**
014         * Message field we have made mutable on purpose to before rendering but after the
015         * controller is done.
016         */
017        public String message;
018
019        /**
020         * Default constructor required for javadoc 18+
021         */
022        public MessagePage() {
023        }
024
025}