|
|
|
@ -19,6 +19,7 @@ package io.entgra.device.mgt.core.device.mgt.api.jaxrs.service.impl;
|
|
|
|
|
|
|
|
|
|
import com.google.gson.JsonArray;
|
|
|
|
|
import com.google.gson.JsonObject;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.*;
|
|
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
|
|
import org.apache.commons.logging.Log;
|
|
|
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
|
@ -37,18 +38,6 @@ import io.entgra.device.mgt.core.device.mgt.common.spi.OTPManagementService;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.core.DeviceManagementConstants;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.core.service.DeviceManagementProviderService;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.core.service.EmailMetaInfo;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.ActivityList;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.BasicUserInfo;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.BasicUserInfoList;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.BasicUserInfoWrapper;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.Credential;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.EnrollmentInvitation;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.ErrorResponse;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.OldPasswordResetWrapper;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.PermissionList;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.RoleList;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.UserInfo;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.beans.UserStoreList;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.exception.BadRequestException;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.service.api.UserManagementService;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.api.jaxrs.service.impl.util.RequestValidationUtil;
|
|
|
|
@ -696,7 +685,26 @@ public class UserManagementServiceImpl implements UserManagementService {
|
|
|
|
|
user.setLastname(getClaimValue(username, Constants.USER_CLAIM_LAST_NAME));
|
|
|
|
|
userList.add(user);
|
|
|
|
|
}
|
|
|
|
|
return Response.status(Response.Status.OK).entity(userList).build();
|
|
|
|
|
|
|
|
|
|
int toIndex = offset + limit;
|
|
|
|
|
int listSize = userList.size();
|
|
|
|
|
int lastIndex = listSize - 1;
|
|
|
|
|
|
|
|
|
|
List<UserInfo> offsetList;
|
|
|
|
|
if (offset <= lastIndex) {
|
|
|
|
|
if (toIndex <= listSize) {
|
|
|
|
|
offsetList = userList.subList(offset, toIndex);
|
|
|
|
|
} else {
|
|
|
|
|
offsetList = userList.subList(offset, listSize);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
offsetList = new ArrayList<>();
|
|
|
|
|
}
|
|
|
|
|
UserInfoList result = new UserInfoList();
|
|
|
|
|
result.setList(offsetList);
|
|
|
|
|
result.setCount(userList.size());
|
|
|
|
|
|
|
|
|
|
return Response.status(Response.Status.OK).entity(result).build();
|
|
|
|
|
} catch (UserStoreException e) {
|
|
|
|
|
String msg = "Error occurred while retrieving the list of users using the filter : " + filter;
|
|
|
|
|
log.error(msg, e);
|
|
|
|
|