Fix build failure

This commit is contained in:
Lasantha Dharmakeerthi 2024-01-22 13:29:58 +00:00
commit c71e3b66d3

View File

@ -899,4 +899,14 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
public List<Application> getInstalledApplicationsOnDevice(Device device) throws DeviceManagementException {
return null;
}
@Override
public List<Device> getEnrolledDevicesSince(Date date) throws DeviceManagementException {
return null;
}
@Override
public List<Device> getEnrolledDevicesPriorTo(Date date) throws DeviceManagementException {
return null;
}
}