mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Provide response based on headers
This commit is contained in:
parent
10d114ba1e
commit
d75f48166e
@ -305,16 +305,18 @@ public class ActivityProviderServiceImpl implements ActivityInfoProviderService
|
||||
log.debug("Activity request: " + new Gson().toJson(activityPaginationRequest));
|
||||
}
|
||||
int count = dmService.getActivitiesCount(activityPaginationRequest);
|
||||
if (count > 0) {
|
||||
activityList.setList(dmService.getActivities(activityPaginationRequest));
|
||||
}
|
||||
activityList.setCount(count);
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Filtered Activity count: " + count);
|
||||
}
|
||||
if (count > 0) {
|
||||
activityList.setList(dmService.getActivities(activityPaginationRequest));
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Fetched Activity count: " + activityList.getList().size());
|
||||
}
|
||||
} else if (ifModifiedSince != null && !ifModifiedSince.isEmpty()) {
|
||||
return Response.notModified().build();
|
||||
}
|
||||
activityList.setCount(count);
|
||||
return Response.ok().entity(activityList).build();
|
||||
} catch (OperationManagementException e) {
|
||||
String msg
|
||||
|
||||
Loading…
Reference in New Issue
Block a user