mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request 'Fix user search by partial filters' (#284) from prathabanKavin/device-mgt-core:searchusersfix1 into master
Reviewed-on: https://repository.entgra.net/community/device-mgt-core/pulls/284
This commit is contained in:
commit
8475cb5764
@ -480,7 +480,7 @@ public class UserManagementServiceImpl implements UserManagementService {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
if (StringUtils.isNotEmpty(username)) {
|
if (StringUtils.isNotEmpty(username)) {
|
||||||
commonUsers = getUserList(null, username);
|
commonUsers = getUserList(null, "*" + username + "*");
|
||||||
}
|
}
|
||||||
if (commonUsers != null) {
|
if (commonUsers != null) {
|
||||||
commonUsers.remove(Constants.APIM_RESERVED_USER);
|
commonUsers.remove(Constants.APIM_RESERVED_USER);
|
||||||
@ -488,7 +488,7 @@ public class UserManagementServiceImpl implements UserManagementService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!skipSearch(commonUsers) && StringUtils.isNotEmpty(firstName)) {
|
if (!skipSearch(commonUsers) && StringUtils.isNotEmpty(firstName)) {
|
||||||
tempList = getUserList(Constants.USER_CLAIM_FIRST_NAME, firstName);
|
tempList = getUserList(Constants.USER_CLAIM_FIRST_NAME, "*" + firstName + "*");
|
||||||
if (commonUsers == null) {
|
if (commonUsers == null) {
|
||||||
commonUsers = tempList;
|
commonUsers = tempList;
|
||||||
} else {
|
} else {
|
||||||
@ -497,7 +497,7 @@ public class UserManagementServiceImpl implements UserManagementService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!skipSearch(commonUsers) && StringUtils.isNotEmpty(lastName)) {
|
if (!skipSearch(commonUsers) && StringUtils.isNotEmpty(lastName)) {
|
||||||
tempList = getUserList(Constants.USER_CLAIM_LAST_NAME, lastName);
|
tempList = getUserList(Constants.USER_CLAIM_LAST_NAME, "*" + lastName + "*");
|
||||||
if (commonUsers == null || commonUsers.size() == 0) {
|
if (commonUsers == null || commonUsers.size() == 0) {
|
||||||
commonUsers = tempList;
|
commonUsers = tempList;
|
||||||
} else {
|
} else {
|
||||||
@ -506,7 +506,7 @@ public class UserManagementServiceImpl implements UserManagementService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!skipSearch(commonUsers) && StringUtils.isNotEmpty(emailAddress)) {
|
if (!skipSearch(commonUsers) && StringUtils.isNotEmpty(emailAddress)) {
|
||||||
tempList = getUserList(Constants.USER_CLAIM_EMAIL_ADDRESS, emailAddress);
|
tempList = getUserList(Constants.USER_CLAIM_EMAIL_ADDRESS, "*" + emailAddress + "*");
|
||||||
if (commonUsers == null || commonUsers.size() == 0) {
|
if (commonUsers == null || commonUsers.size() == 0) {
|
||||||
commonUsers = tempList;
|
commonUsers = tempList;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user