com.clickntap.tool.script.ScriptEngine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of click_framework Show documentation
Show all versions of click_framework Show documentation
Java Framework based on Spring Framework, Freemarker and Simplicity
package com.clickntap.tool.script;
import java.io.OutputStream;
import java.util.Map;
public interface ScriptEngine {
public String eval(Map ctx, String templateName) throws Exception;
public String evalScript(Map ctx, String script) throws Exception;
public void eval(Map ctx, String templateName, OutputStream out) throws Exception;
public void evalScript(Map ctx, String script, OutputStream out) throws Exception;
public boolean evalRule(Map context, String templateName) throws Exception;
public boolean evalRuleScript(Map context, String rule) throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy