io.quarkiverse.freemarker.runtime.FreemarkerBuildConfigSupport Maven / Gradle / Ivy
package io.quarkiverse.freemarker.runtime;
import java.util.List;
import java.util.Map;
public class FreemarkerBuildConfigSupport {
private final List resourcePaths;
private final Map directives;
public FreemarkerBuildConfigSupport(List resourcePaths, Map directives) {
this.resourcePaths = resourcePaths;
this.directives = directives;
}
public List getResourcePaths() {
return resourcePaths;
}
public Map getDirectives() {
return directives;
}
}