io.bootique.mvc.resolver.TemplateResolver 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.resolver;
import io.bootique.mvc.Template;
public interface TemplateResolver {
Template resolve(String templateName, Class> viewType);
}