Example Setup (cont.)
Here is the code for PrivRoutineExample:
PrivRoutineExample
write !, "Welcome to the Privileged App Routine"
write !, "User before: ", $USERNAME
write !, "Roles before: ", $ROLES
Set status=$SYSTEM.Security.AddRoles("MyPrivilegedRoutineApplication")
write !, "User after: ", $USERNAME
write !, "Roles after: ", $ROLES
The code does the following:
-
Writes the user's user name and roles when the user enters the routine.
-
Uses $SYSTEM.Security.AddRoles to add the user to additional roles. Note that MyPrivilegedRoutineApplication is the name of the privileged routine application. It is not the name of any role. The user is added to roles listed as Application Roles for the privileged routine application.
-
Writes the user's user name and roles again to show the changes in the roles.