String lifetime = globalConfiguration.getProperty("myproxyLifetime");
trustedCertLoc = globalConfiguration.getTrustedCertsFile();
// Load the Credential configurations
if (myproxyUserName != null && myproxyPasswd != null && myproxyServer != null && lifetime != null) {
this.myproxyLifetime = Integer.parseInt(lifetime);
this.proxyRenewer = new MyProxyManager(myproxyUserName, myproxyPasswd, MyProxy.MYPROXY_SERVER_PORT, myproxyLifetime, myproxyServer, trustedCertLoc);
log.info("loaded credentails from Proxy server");
} else {
log.info(myproxyUserName + " " + (myproxyPasswd != null) + " " + myproxyServer + " " + myproxyLifetime);
this.proxyRenewer = null;
}