How to remove "rep:policy" node? | Community
Skip to main content
Level 4
October 16, 2015
Solved

How to remove "rep:policy" node?

  • October 16, 2015
  • 5 replies
  • 3339 views

Hello,

I want to remove "rep:policy" node.

Is there a way to remove this node, except uploading package with overwrite mode?

Thanks!

Best answer by joerghoh

When you want to do it in code, you should use the Jackrabbit API. The API management isn't standardized in JCR.

regards,
Jörg

5 replies

joerghoh
Adobe Employee
joerghohAdobe EmployeeAccepted solution
Adobe Employee
October 16, 2015

When you want to do it in code, you should use the Jackrabbit API. The API management isn't standardized in JCR.

regards,
Jörg

Sham_HC
Level 10
October 16, 2015

from useradmin remove the permissions OR programatically

Level 3
October 16, 2015

You can do it via CRXDE Lite: right-click on the node, which you would like to remove rep:policy from, and choose Mixins... 

[img]mixins.png[/img]

remove rep:AccessControllable mixin from the popup window

[img]mixins-remove.png[/img]

Community Advisor
October 16, 2015

Can you please elaborate your question to understand what you want to do?

AmitVishwakarma
Community Advisor
Community Advisor
January 18, 2025

To remove the rep:policy node:

  1. Using CRX/CRXDE Lite: Navigate to the node and delete it directly.
  2. Using JCR API: Programmatically remove the node using node.remove() and session.save().
  3. Using AEM Console: Manually delete via the AEM Web Console.

Ensure to back up before deleting.