org.seedstack.io.spi.StaticTemplateLoader Maven / Gradle / Ivy
/**
* Copyright (c) 2013-2015, The SeedStack authors
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package org.seedstack.io.spi;
import java.net.URL;
import java.util.Map;
/**
* StaticTemplateLoader loads static templates from META-INF directory at the plugin startup. Static templates to load are defined
* by a regex specified with templatePathRegex.
*
* @author [email protected]
* @param
* template
*
*/
public interface StaticTemplateLoader extends TemplateLoader {
/**
* @return template regex
*/
String templatePathRegex();
/**
* @param templateURLs
*/
void setTemplateURLs(Map templateURLs);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy