|
|
|
@ -455,7 +455,7 @@ public class UserManagementServiceImpl implements UserManagementService {
|
|
|
|
|
userList = new ArrayList<>(users.size());
|
|
|
|
|
BasicUserInfo user;
|
|
|
|
|
for (String username : users) {
|
|
|
|
|
if (Constants.APIM_RESERVED_USER.equals(username)) {
|
|
|
|
|
if (Constants.APIM_RESERVED_USER.equals(username) || Constants.RESERVED_USER.equals(username)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
user = getBasicUserInfo(username);
|
|
|
|
@ -520,6 +520,7 @@ public class UserManagementServiceImpl implements UserManagementService {
|
|
|
|
|
}
|
|
|
|
|
if (commonUsers != null) {
|
|
|
|
|
commonUsers.remove(Constants.APIM_RESERVED_USER);
|
|
|
|
|
commonUsers.remove(Constants.RESERVED_USER);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!skipSearch(commonUsers) && StringUtils.isNotEmpty(firstName)) {
|
|
|
|
@ -695,7 +696,7 @@ public class UserManagementServiceImpl implements UserManagementService {
|
|
|
|
|
userList = new ArrayList<>();
|
|
|
|
|
UserInfo user;
|
|
|
|
|
for (String username : users) {
|
|
|
|
|
if (Constants.APIM_RESERVED_USER.equals(username)) {
|
|
|
|
|
if (Constants.APIM_RESERVED_USER.equals(username) || Constants.RESERVED_USER.equals(username)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
user = new UserInfo();
|
|
|
|
|