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

com.clickntap.tool.script.ScriptEngine Maven / Gradle / Ivy

The newest version!
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