Merge pull request #861 from lasanthaDLPDS/master

Adding latest android agent and Fixing test failures
revert-dabc3590
Madawa Soysa 7 years ago committed by GitHub
commit b6110579ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -452,6 +452,15 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
return null;
}
@Override public List<Activity> getFilteredActivities(String operationCode, int limit, int offset)
throws OperationManagementException {
return null;
}
@Override public int getTotalCountOfFilteredActivities(String operationCode) throws OperationManagementException {
return 0;
}
@Override
public int getActivityCountUpdatedAfter(long l) throws OperationManagementException {
return 0;

@ -44,6 +44,11 @@ public class NotificationManagementServiceMock implements NotificationManagement
return false;
}
@Override public boolean updateAllNotifications(Notification.Status status, int tenantID)
throws NotificationManagementException {
return false;
}
@Override
public List<Notification> getAllNotifications() throws NotificationManagementException {
return null;

@ -452,6 +452,15 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
return null;
}
@Override public List<Activity> getFilteredActivities(String operationCode, int limit, int offset)
throws OperationManagementException {
return null;
}
@Override public int getTotalCountOfFilteredActivities(String operationCode) throws OperationManagementException {
return 0;
}
@Override
public int getActivityCountUpdatedAfter(long l) throws OperationManagementException {
return 0;

@ -44,6 +44,11 @@ public class NotificationManagementServiceMock implements NotificationManagement
return false;
}
@Override public boolean updateAllNotifications(Notification.Status status, int tenantID)
throws NotificationManagementException {
return false;
}
@Override
public List<Notification> getAllNotifications() throws NotificationManagementException {
return null;

Loading…
Cancel
Save