Rhino: How to access Java interface variables in Javascript implementation?
I expose a java interface for some other party to let them provide an implementation for the same in javascript.
public interface APIInterface{
public static APIUtils util = new APIUtils();
public ArrayList getAllObjects(Object aTransaction);
}
Javascript implementation:
/** Core Interface Method **/
new Object() {
getAllObjects: function(tran) {
tran.set(..); //OK
tran.set(..); //OK
util.callSomeFunction(); //Fails here..Rhino doesn't understand util..
}
}
I want the javascript implementation of the interface to understand the interface variable util
without having to pass it as an additional argument to the function or by adding it to the ScriptEngine
. Is this technically possible?