TDAT: private Date getLastUpdated(Node node) throws RepositoryException { try { node = node.getNode("jcr:content"); } catch (PathNotFoundException e) { node = node.getProperty("jcr:content").getNode(); } return node.getProperty("jcr:lastModified").getDate().getTime(); } COM: reads the update timestamp from the