Hello,
I understand that the correct way to map multiple groups to a security-role is as follows:
<application-bnd>
<security-role name="admin">
<group name="Manager" />
<group name="TeamLead" />
</security-role>
<security-role name="user">
<group name="Employee" />
</security-role>
</application-bnd>
as seen on https://openliberty.io/docs/21.0.0.8/authorization.html
My question is whether the following alternative of having multiple values in a single group tag might also work :
<application-bnd>
<security-role name="admin">
<group name="Manager,TeamLead,ScrumLeader" />
</security-role>
<security-role name="user">
<group name="Employee" />
</security-role>
</application-bnd>
Or can the <group> tag only refer to a single group at a time?
Thanks,
Aditya H
#Support#SupportMigration#WebSphereLiberty