001package io.jstach.opt.spring.webflux.example.message; 002 003import io.jstach.jstache.JStache; 004 005/** 006 * Model using a configurer to add state. 007 * 008 * @author agentgt 009 * @author dsyer 010 */ 011@JStache(path = "hello") 012public class MessagePage { 013 014 /** 015 * An example of field access. 016 */ 017 public String message; 018 019 /** 020 * Creates a mutable MessagePage 021 */ 022 public MessagePage() { 023 } 024 025}