Enable roles containing the filter to be listed in role listing

This commit is contained in:
kamidu 2017-12-14 19:18:44 +05:30
parent 1413ff5268
commit e10cf66813

View File

@ -606,6 +606,8 @@ public class RoleManagementServiceImpl implements RoleManagementService {
String[] roles;
if ((filter == null) || filter.isEmpty()) {
filter = "*";
} else {
filter += "*";
}
if (log.isDebugEnabled()) {
log.debug("Getting the list of user roles");