Fix build failure

This commit is contained in:
Rajitha Kumara 2024-01-22 18:51:41 +05:30
parent b5e9efcd1f
commit 7151e7b060

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;
}
}