I created some bindings and passed them to the engine and global scopes
Bindings bindings = new SimpleBindings();
bindings.put...
scriptEngine.setBindings(bindings, ScriptContext.ENGINE_SCOPE);
Bindings bindings1 = new SimpleBindings();
bindings1.put...
scriptEngine.setBindings(bindings1, ScriptContext.GLOBAL_SCOPE);
Now on the js side i would like to print all avalaible bindings in a specific scope.
How can i do that?
