Home > Contents > Index >
rolelist:getall
Gets the list of roles as a comma-separated string.
Syntax
<rolelist:getall name="rolelist_object_name
" varname="variable_name
" />Parameters
name (required)
- Name of the role list object.
varname (required)
- Name of the variable to create.
Example
The following code gets all the roles in a role list object as a string, verifies whether or not the object contains any roles, and then displays the roles.
<!-- Show user roles --> <rolelist:getall name="roleobject" varname="roles"/> <IF COND="IsVariable.roles=false"> <THEN> <SETVAR name="roles" value="[None]"/> <BR/> rolelist:getall: No roles found <BR/> </THEN> <ELSE> <BR/> rolelist:getall: Roles found are <CSVAR name="Variables.roles"/><BR/><BR/> </ELSE> </IF>
Home > Contents > Index > ![]()
Oracle JSP Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.