delight.nashornsandbox.internal.ScriptEngineOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of delight-nashorn-sandbox Show documentation
Show all versions of delight-nashorn-sandbox Show documentation
A safe sandbox to execute JavaScript code from Nashorn.
The newest version!
package delight.nashornsandbox.internal;
import javax.script.ScriptEngine;
import javax.script.ScriptException;
public interface ScriptEngineOperation {
Object executeScriptEngineOperation(ScriptEngine scriptEngine) throws ScriptException, Exception;
}