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

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy