Merge branch 'master' into 'master'

Fix mock service broken due to core changes in DeviceManagementProviderService

See merge request entgra/carbon-device-mgt-plugins!12
This commit is contained in:
Charitha Goonetilleke 2019-01-25 17:29:54 +00:00
commit 1530ae9d77
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;
}
}