You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2023/01/11 17:53:02 UTC

[sling-org-apache-sling-feature-cpconverter] branch master updated: fix links to AclManager sources

This is an automated email from the ASF dual-hosted git repository.

kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-cpconverter.git


The following commit(s) were added to refs/heads/master by this push:
     new 446396a  fix links to AclManager sources
446396a is described below

commit 446396afa93b3f8684816b73617647637e5fe17b
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Wed Jan 11 18:52:56 2023 +0100

    fix links to AclManager sources
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 8d3012d..938e597 100644
--- a/README.md
+++ b/README.md
@@ -401,7 +401,7 @@ Everything else, unless users will deploy in the classpath a custom `org.apache.
 
 ### ACL Management
 
-While scanning the input content-package(s), all ACLs entries are handled by the [org.apache.sling.feature.cpconverter.acl.AclManager](./src/main/java/org/apache/sling/feature/cpconverter/acl/AclManager.java) service which is in charge of collecting and computing:
+While scanning the input content-package(s), all ACLs entries are handled by the [org.apache.sling.feature.cpconverter.acl.AclManager](./src/main/java/org/apache/sling/feature/cpconverter/accesscontrol/AclManager.java) service which is in charge of collecting and computing:
 
 * System Users;
 * System Users related ACLs;
@@ -409,7 +409,7 @@ While scanning the input content-package(s), all ACLs entries are handled by the
 * Node types registrations;
 * Any `repoinit` additional instruction.
 
-Default implementation is provided by [org.apache.sling.feature.cpconverter.acl.DefaultAclManager](./src/main/java/org/apache/sling/feature/cpconverter/acl/DefaultAclManager.java).
+Default implementation is provided by [org.apache.sling.feature.cpconverter.acl.DefaultAclManager](./src/main/java/org/apache/sling/feature/cpconverter/accesscontrol/DefaultAclManager.java).
 
 #### Please note