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

How to remove "rep:policy" node?

  • October 16, 2015
  • 5 replies
  • 3335 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

AmitVishwakarma
New Participant
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.

joerghoh
joerghohAccepted solution
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
New Participant
October 16, 2015

from useradmin remove the permissions OR programatically

New Participant
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]

New Participant
October 16, 2015

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