String conf = _confFilesList.get(i);
localConfiguration.setProperty("wrapper.config", conf);
Map utils = new HashMap();
utils.put("util", new Utils(this));
YajswConfigurationImpl config = new YajswConfigurationImpl(localConfiguration, _useSystemProperties, utils);
Cache cache = null;
// check if we need to download files from remote location
if (!config.isLocalFile())
{
cache = new Cache();
cache.load(config);
}
// add configuration file name to list
confList += config.getCachedPath();
if (i < (_confFilesList.size() - 1))
confList += ",";