try {
String uri = URLDecoder.decode(childs[i].getAttribute("uri"));
int expires = childs[i].getAttributeAsInteger("expires");
String cache = childs[i].getAttribute("cache");
String key = URLDecoder.decode(childs[i].getAttribute("key"));
SimpleCacheKey cacheKey = new SimpleCacheKey(key, false);
TargetConfiguration tc = new TargetConfiguration(cacheKey, uri, expires, cache);
this.entries.put(key, tc);
final String name = cacheKey.getKey();
this.scheduler.addPeriodicJob(name, this.schedulerTarget,
expires,
true,
tc.parameters,