Fix mock service broken due to core changes in DeviceManagementProviderService

This commit is contained in:
Saad Sahibjan 2019-01-25 13:49:34 +05:30
parent ab40b7b6b8
commit a31afaa85f
2 changed files with 34 additions and 0 deletions

View File

@ -566,4 +566,21 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
GeoCoordinate geoCoordinate1, int i) throws DeviceManagementException {
return null;
}
@Override
public int getDeviceCountOfTypeByStatus(String deviceType, String deviceStatus) throws DeviceManagementException {
return 0;
}
@Override
public List<String> getDeviceIdentifiersByStatus(String deviceType, String deviceStatus)
throws DeviceManagementException {
return null;
}
@Override
public boolean bulkUpdateDeviceStatus(String deviceType, List<String> deviceList, String status)
throws DeviceManagementException {
return false;
}
}

View File

@ -566,4 +566,21 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
GeoCoordinate geoCoordinate1, int i) throws DeviceManagementException {
return null;
}
@Override
public int getDeviceCountOfTypeByStatus(String deviceType, String deviceStatus) throws DeviceManagementException {
return 0;
}
@Override
public List<String> getDeviceIdentifiersByStatus(String deviceType, String deviceStatus)
throws DeviceManagementException {
return null;
}
@Override
public boolean bulkUpdateDeviceStatus(String deviceType, List<String> deviceList, String status)
throws DeviceManagementException {
return false;
}
}