Hi,
In CQ, some nodes use cq:lastModified, cq:lastModifiedBy, etc. to store the last modification time stamp and user.
Some other nodes use jcr:lastModified, jcr:lastModifiedBy, etc. to store that information.
If we edit a node, for example a node of type "cq:Page", using the JCR API and save it, cq:lastModified, cq:lastModifiedBy won't be updated to reflect the change.
We have written a utility class to work around this issue, but is there a built-in way to update the correct set of modification metadata properties when a node is saved/updated?
Thanks.