}
}
for (Node n = node.getFirstChild(); n != null; n = n.getNextSibling()) {
if ((n instanceof Element) && "cache".equalsIgnoreCase(n.getNodeName())) {
Cache cache = null;
CacheConfig config = null;
String id = ((Element)n).getAttribute("id");
String desc = ((Element)n).getAttribute("desc");
long ttl = getTimeLong(((Element)n).getAttribute("ttl"));