Skip to content

Commit 00019c1

Browse files
author
Steve Riesenberg
committed
Merge branch '6.0.x'
Closes gh-12406
2 parents 9930bed + ed657a8 commit 00019c1

File tree

1 file changed

+4
-4
lines changed
  • docs/modules/ROOT/pages/servlet/authorization

1 file changed

+4
-4
lines changed

docs/modules/ROOT/pages/servlet/authorization/acls.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ When used in the context of receiving a permission, an SID is generally called a
6565
The only columns are the ID and the Java class name.
6666
Thus, there is a single row for each unique Class for which we wish to store ACL permissions.
6767

68-
* Finally, `ACL_ENTRY` stores the individual permissions assigned to each recipient.
69-
Columns include a foreign key to the ACL_OBJECT_IDENTITY, the recipient (which is a foreign key to ACL_SID), whether we audit or not, and the integer bit mask that represents the actual permission being granted or denied.
68+
* `ACL_OBJECT_IDENTITY` stores information for each unique domain object instance in the system.
69+
Columns include the ID, a foreign key to the ACL_CLASS table, a unique identifier so we know the ACL_CLASS instance for which we provide information, the parent, a foreign key to the ACL_SID table to represent the owner of the domain object instance, and whether we allow ACL entries to inherit from any parent ACL.
7070
We have a single row for every domain object instance for which we store ACL permissions.
7171

72-
* Finally, ACL_ENTRY stores the individual permissions assigned to each recipient.
73-
Columns include a foreign key to the ACL_OBJECT_IDENTITY, the recipient (i.e. a foreign key to ACL_SID), whether we'll be auditing or not, and the integer bit mask that represents the actual permission being granted or denied.
72+
* Finally, `ACL_ENTRY` stores the individual permissions assigned to each recipient.
73+
Columns include a foreign key to the `ACL_OBJECT_IDENTITY`, the recipient (i.e. a foreign key to ACL_SID), whether we'll be auditing or not, and the integer bit mask that represents the actual permission being granted or denied.
7474
We have a single row for every recipient that receives a permission to work with a domain object.
7575

7676

0 commit comments

Comments
 (0)