How can I convert the code below from Jython to Java?

The code will be used to run the Junit test to set the proxy details to make JUnits more usable.

Jyhon code:

from java.lang import *;
from com.parasoft.preferences import *;
from com.parasoft.proxy import *;

def SetupProxy(item, context):
    preferences = AppPreferenceProvider.getProxyPreferenceProvider();
    preferences.setProxyConfiguration("bisn.parasoft.com", "3128", "", "", "", "")
    preferences.setUseProxy(1)
    preferences.setUseProxyAutoConfig(0);
    preferences.setUseSameProxySettings(1)
    preferences.setUseProxyAuthentication(1)
    preferences.setProxyUserId("devtest")
    preferences.setProxyPasswd("dev%pass")
    preferences.setSystemProxy(Boolean(0));
link|improve this question
I just submitted an edit to your question in which I removed the JavaScript tag and replaced it with the Java tag, since this is what you mention in your title and question (Java and JavaScript are not the same thing). If this is not want you intended then please feel free to change the tags back. Welcome to SO! – Chris Feb 6 at 10:07
3  
I'm not sure I understand the question--it almost is Java; what doesn't work? How is it related to XML? – Dave Newton Feb 6 at 10:47
@DaveNewton Jython follows python syntax. – thavan Feb 6 at 13:56
@thavan Yes, I know. And the sample provided is almost translatable verbatim to Java. – Dave Newton Feb 6 at 13:57
Thanks Chris and Dave your understanding is correct this is Jython code ... and we need to convert into java code to fix your proxy related issue. I tried this code but didn't work at my end can anyone fix this issue. – user1191915 Feb 7 at 8:20
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.