3.2. Process Roles
Process roles define process actor types, e.g. operator or manager. To open the process roles editor select the Process roles property in the model properties panel. Information about the roles will be written to the process XML (extensionElements
section of the process
element) during the model deployment.
Process roles definition
<process id="testProcess" name="Test process">
<extensionElements>
<cuba:procRoles>
<cuba:procRole name="Manager" code="manager"/>
<cuba:procRole name="Operator" code="operator"/>
</cuba:procRoles>
</extensionElements>
</process>