[
https://issues.apache.org/jira/browse/SLING-11713?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17642712#comment-17642712
]
Eric Norman commented on SLING-11713:
-------------------------------------
Pull Request #17 contains the proposed changes for review and feedback.
> Change ACL json input structure to be less ambiguous for restrictions
> ---------------------------------------------------------------------
>
> Key: SLING-11713
> URL: https://issues.apache.org/jira/browse/SLING-11713
> Project: Sling
> Issue Type: New Feature
> Reporter: Eric Norman
> Assignee: Eric Norman
> Priority: Major
> Fix For: JCR ContentLoader 2.5.4
>
> Time Spent: 1h 20m
> Remaining Estimate: 0h
>
> The restriction details in the security:acl contentloader json input can be
> ambiguous in some situations.
> This is the ContentLoader equivalent for what was done for SLING-11243 and
> SLING-11233
> Expected:
> The JSON structure of the security:acl entries should be enhanced to make it
> more clear.
> For example, replace the "granted/denied/restrictions" items with a
> "privileges" structure whose items are the granted or denied privileges.
> Each privilege has a "deny" and/or "allow" child whose value is either true
> (no restrictions) or an array of restrictions + values.
> For example:
> {code:java}
> "security:acl": [
> {
> "principal": "sling123_user",
> "privileges":{
> "jcr:read": {
> "allow": true
> },
> "jcr:write":{
> "allow":{
> "rep:glob":"glob1allow"
> },
> "deny":{
> "rep:glob":"glob1deny"
> }
> }
> }
> }
> ] {code}
>
> The previous syntax should be preserved for backward compatibility.
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)