Hi,
I'm successfully programmatically creating new versions via the VersionManager. My code is as follows:
final Workspace workspace = session.getWorkspace();
final VersionManager versionManager = workspace.getVersionManager();
final VersionHistory versionHistory = versionManager.getVersionHistory(nodePath);
String label = new SimpleDateFormat("yyyyMMddHHmmssSSS").format(new Date()).toString();
final Version v = versionManager.checkpoint(nodePath);
if (v != null) {
log.debug("Process: Adding Label for {}", v.getName());
versionHistory.addVersionLabel(v.getName(), label, false);
I can confirm that new versions are created by viewing them in CRX DE under the Version History. The Frozen Nodes are created.
However, the new versions do not appear in siteadmin under Restore Version, or on the Page Edit Sidekick in the Versioning Tab in Author runmode . What am I missing to make sure the new versions are selectable and viewable in those menus?
Thank you.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
Can you check, if version nodes has cr:predecessors and jcr:successors properties
If you want to create version for page you can use PageManager's createRevision method.
PageManager ("The Adobe AEM Quickstart and Web Application.")
Views
Replies
Total Likes
Hi,
Can you check, if version nodes has cr:predecessors and jcr:successors properties
If you want to create version for page you can use PageManager's createRevision method.
PageManager ("The Adobe AEM Quickstart and Web Application.")
Views
Replies
Total Likes
Thanks for your reply. That's one of the things I checked. I created versions programmatically and via the Create Version feature through the sidekick. I compared both versions of nodes created and they both have the same properties, including predecessors and successors.
The only difference I noticed was that the jcr:frozenNodes that are created through the UI have 4 extra properties over the ones that are created programmatically: cq:childrenOrder , cq:name , cq:parentPath and cq:siblingOrder . Otherwise, everything else is the same property wise.
Views
Replies
Total Likes
I'll try using the PageManager and see if that resolves the issue.
Views
Replies
Total Likes
Using PageManager instead of VersionManager was the right solution. Thank you @arunp99088702
Views
Replies
Total Likes
Views
Like
Replies