io.bootique.mvc.renderer.TemplateRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bootique-mvc Show documentation
Show all versions of bootique-mvc Show documentation
Provides basic abstractions for web MVC in Bootique.
package io.bootique.mvc.renderer;
import java.io.IOException;
import java.io.Writer;
import io.bootique.mvc.Template;
public interface TemplateRenderer {
void render(Writer out, Template template, Object rootModel) throws IOException;
}