Defining Permissions in C++
- Article
-
-
In Authorization Manager, you define which users have access to which application resources by creating an authorization policy store.
For information about defining permissions with ACLs, see Defining Permissions with ACLs in C++.
To define access permissions
- Create the store where the authorization policy is defined:
Creating an Authorization Policy Store Object in C++
2. Create a section in the authorization policy store for a specific application:
Creating an Application Object in C++
3. Define operations that the application implements to access and modify resources:
Defining Operations in C++
4. Group operations into high-level tasks that users want to perform:
Grouping Operations into Tasks in C++
5. Define roles that consist of groups of tasks:
Grouping Tasks into Roles in C++
A user that is assigned to a role has permission to perform any task assigned to that role.
6. Create scripts to qualify access to tasks at run time:
Qualifying Access with Business Logic in C++
This step is optional.
7. Define groups of users:
Defining Groups of Users in C++
These groups can then be assigned to roles to determine which tasks they can perform.
8. Add users to user groups:
Adding Users to an Application Group in C++