I'm looking to use the Jython in a Java project I'm working on. And I'm wondering 2 things.
Can I disable access to Java classes from Python scripts. IE. stop scripts from being able to do things like
from java.util import Date
?And can I change the output stream that
print "Hello"
etc write to, so that I can redirect a scripts output for my implementation?
Or will I have to edit the actual Jython classes to disable and change this?