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

io.undertow.js.templates.TemplateProvider Maven / Gradle / Ivy

There is a newer version: 1.1.0.Beta1
Show newest version
package io.undertow.js.templates;

import java.io.Closeable;
import java.nio.file.Path;
import java.util.Map;

/**
 * @author Stuart Douglas
 */
public interface TemplateProvider extends Closeable, AutoCloseable {

    String name();

    void init(Map properties);

    Template compile(String templateName, String templateContents);

    void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy