Expand my Community achievements bar.

AEM - Rollout a page programmatically and update references | AEM Community Blog Seeding

Avatar

Administrator

BlogImage.jpg

AEM - Rollout a page programmatically and update references by Ravipampana

Abstract

Out of the box RolloutManager provides below 3 methods by using that we can rollout the page programmatically.

1) void rollout(RolloutParams params) throws WCMException;

2) void rollout(ResourceResolver resolver, LiveRelationship relation, boolean reset) throws WCMException;

3) void rollout(ResourceResolver resolver, LiveRelationship relation, boolean reset, boolean autoSave) throws WCMException;


But when using 2nd and 3rd method we are able to rollout the page but the link references are not getting updated to the corresponding locale.
This is because we are not providing the rollout trigger in 2nd and 3rd methods, so referenceUpdate is not getting triggered.
In order to update the link references in the rollout page we need to use 1st method and pass/set the required details in RolloutParams class.
Below is example code for setting the RolloutParams

RolloutParams rolloutParams = new RolloutParams();

/** if true, all child pages are updated too */
rolloutParams.isDeep = false;
/** master page to rollout */
rolloutParams.master = targetPage;
/** path of lives copies to update, null to update all */
rolloutParams.targets = new String[] {relationship.getTargetPath()};
/** if true, Live Copy is completely reset */
rolloutParams.reset = true;
/** rollout trigger. It can be other rollout as per the requirements */
rolloutParams.trigger = RolloutManager.Trigger.ROLLOUT;
rolloutManager.rollout(rolloutParams);

Read Full Blog

AEM - Rollout a page programmatically and update references

Q&A

Please use this thread to ask the related questions.



Kautuk Sahni
Topics

Topics help categorize Community content and increase your ability to discover relevant content.

0 Replies