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 Stripecube Show documentation
Show all versions of Stripecube Show documentation
Stripecube is an open source Java framework for Web Applications
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;
}