io.bootique.mvc.renderer.TemplateRendererFactory 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 io.bootique.mvc.Template;
public interface TemplateRendererFactory {
TemplateRenderer getRenderer(Template template);
}