mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Fix mock service broken due to core changes in DeviceManagementProviderService
This commit is contained in:
parent
ab40b7b6b8
commit
a31afaa85f
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user