deployJava.js
getJavaURL: 'http://java.com/dt-redirect',
If you look at how getJavaURL is used - we might append it with query-string/form values:
location.href = this.getJavaURL +
((this.returnPage != null) ?
('&returnPage=' + this.returnPage) : '') +
((this.locale != null) ?
('&locale=' + this.locale) : '') +
((this.brand != null) ?
('&brand=' + this.brand) : '');
So for example, if returnPage is "http://www.google.com", it does not work now, because it will be:
http://java.com/dt-redirect&returnPage=http://www.google.com&locale=en-US