Home > Contents > Index >
ROLELIST.HASROLE
Verifies whether a role is present in a role list.
Syntax
<ROLELIST.HASROLE NAME="rolelist_object_name
" ROLE="role_to_verify
" VARNAME="variableName
" />Parameters
NAME (required)
- Name of the role list object.
ROLE
- Name of the role to verify.
VARNAME
- Name of the output variable. The value is set to
true
if the role is in the role list.
Example
The following code checks the role list object to verify whether or not it contains a specified role.
<!-- check for GeneralAdmin role --> <ROLELIST.HASROLE NAME="roleobject" ROLE="GeneralAdmin" VARNAME="roleexists"/> <IF COND="Variables.roleexists=true"> <THEN> <BR/><BR/> ROLELIST.HASROLE: `GeneralAdmin' Role is present <BR/> <CSVAR NAME="Variables.roleexists"/> </THEN> <ELSE> <BR/> ROLELIST.HASROLE: GeneralAdmin role is NOT present. Value returned is <CSVAR NAME="Variables.roleexists"/> <BR/><BR/> </ELSE> </IF>
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.