|
|
|
@ -50,6 +50,7 @@ import io.entgra.device.mgt.core.device.mgt.common.geo.service.GeoQuery;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.common.invitation.mgt.DeviceEnrollmentInvitationDetails;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.common.license.mgt.License;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.common.operation.mgt.Activity;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.common.operation.mgt.DeviceActivity;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.common.operation.mgt.Operation;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.common.operation.mgt.OperationManagementException;
|
|
|
|
|
import io.entgra.device.mgt.core.device.mgt.common.policy.mgt.PolicyMonitoringManager;
|
|
|
|
@ -833,6 +834,16 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<DeviceActivity> getDeviceActivities(ActivityPaginationRequest activityPaginationRequest) throws OperationManagementException {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getDeviceActivitiesCount(ActivityPaginationRequest activityPaginationRequest) throws OperationManagementException {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public License getLicenseConfig(String s) throws DeviceManagementException { return null; }
|
|
|
|
|
|
|
|
|
@ -848,7 +859,7 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void saveApplicationIcon(String s, String s1, String s2, int i) throws DeviceManagementException {
|
|
|
|
|
public void saveApplicationIcon(String s, String s1, String s2) throws DeviceManagementException {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -866,4 +877,9 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
|
|
|
|
|
public List<Application> getInstalledApplicationsOnDevice(Device device, int i, int i1) throws DeviceManagementException {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<Application> getInstalledApplicationsOnDevice(Device device) throws DeviceManagementException {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|