Home > Contents > Index >
rolelist:setall
Sets the role list to indicate "any" role.
Syntax
<rolelist:setall name="rolelist_object_name
" />Parameters
name (required)
- Rolelist object name.
Description
If the role list for a workflow process is set to "any," then users with any role (i.e. users from all roles) can participate in that workflow process.
Example
The following code sets all the roles into the rolelist object, then shows all the roles that have been set.
<!-- setall the roles --> <rolelist:setall name="roleobject"/> <!-- show all roles --> <rolelist.GETALL name="roleobject" varname="roles4"/> <IF COND="IsVariable.roles4=false"> <THEN> <SETVAR name="roles4" value="[None]"/> <BR/> rolelist:setall: No roles found. <BR/><BR/> </THEN> <ELSE> <BR/> rolelist:setall: Roles found are <CSVAR name="Variables.roles4"/><BR/><BR/> </ELSE> </IF>
Home > Contents > Index > ![]()
Oracle JSP Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.