All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.bootique.mvc.renderer.TemplateRenderer Maven / Gradle / Ivy

There is a newer version: 3.0.M2
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy