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

io.github.mrdaios.templates.service.TemplateRenderService Maven / Gradle / Ivy

package io.github.mrdaios.templates.service;

import io.github.mrdaios.templates.exception.TemplateRenderException;
import io.github.mrdaios.templates.model.TemplateRenderModel;

import java.net.URL;
import java.util.Map;

public interface TemplateRenderService {

    Map render(Map template, URL templateDataPath) throws TemplateRenderException;

    Map render(Map template, URL templateDataPath, Map globalTemplateData) throws TemplateRenderException;

    Map render(Map template, Map templateData) throws TemplateRenderException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy