Access controls defines if a permission is granted or denied to a role or user
Primary Key
|
Name
|
Type
|
Length
|
Precision
|
Can Be Null
|
Default
|
References
|
Action
|
Hints
|
Comment
|
true
|
AccessControlId
|
BIGINT
|
|
|
false
|
|
|
|
|
Identifies the access control.
|
false
|
SecurityDescriptorId
|
BIGINT
|
|
|
false
|
|
IWA_SecurityDescriptor(SecurityDescriptorId)
|
ON DELETE CASCADE
|
Java
,
MsSqlServer
,
MySql
|
References the security descriptor that this access control belongs to.
|
false
|
PermissionId
|
BIGINT
|
|
|
false
|
|
IWA_Permission(PermissionId)
|
ON DELETE CASCADE
|
|
References the permission that this access control grants or denies.
|
false
|
GrantDeny
|
BIT
|
|
|
false
|
|
|
|
|
This flag indicates if the permission is granted (1) or denied (0).
|
false
|
SecurityMemberId
|
VARCHAR
|
210
|
|
false
|
|
IWA_SecurityMember(SecurityMemberId)
|
ON DELETE CASCADE
|
|
References the user that this access control grants or denies the permission to. Must be null if RoleId is not null.
|