Merge pull request #853 from ruwany/master

Bumping cdmf version and updating unit tests
This commit is contained in:
Madhawa Perera 2017-11-30 11:04:20 +05:30 committed by GitHub
commit acc768822a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 21 additions and 1 deletions

View File

@ -88,6 +88,11 @@ public class TestDeviceManager implements DeviceManager {
return null;
}
@Override
public boolean updateDeviceProperties(DeviceIdentifier deviceIdentifier, List<Device.Property> list) throws DeviceManagementException {
return false;
}
@Override
public boolean updateDeviceInfo(DeviceIdentifier deviceIdentifier, Device device)
throws DeviceManagementException {

View File

@ -413,6 +413,11 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
}
@Override
public boolean updateProperties(DeviceIdentifier deviceIdentifier, List<Device.Property> list) throws DeviceManagementException {
return false;
}
@Override
public Operation getOperationByDeviceAndOperationId(DeviceIdentifier deviceIdentifier, int i)
throws OperationManagementException {

View File

@ -262,6 +262,11 @@ public class AndroidDeviceManager implements DeviceManager {
return device;
}
@Override
public boolean updateDeviceProperties(DeviceIdentifier deviceIdentifier, List<Device.Property> list) throws DeviceManagementException {
return false;
}
@Override
public boolean setOwnership(DeviceIdentifier deviceId, String ownershipType)
throws DeviceManagementException {

View File

@ -241,6 +241,11 @@ public class WindowsDeviceManager implements DeviceManager {
return device;
}
@Override
public boolean updateDeviceProperties(DeviceIdentifier deviceIdentifier, List<Device.Property> list) throws DeviceManagementException {
return false;
}
@Override
public boolean setOwnership(DeviceIdentifier deviceId, String ownershipType)
throws DeviceManagementException {

View File

@ -1215,7 +1215,7 @@
<javax.ws.rs.version>1.1.1</javax.ws.rs.version>
<!-- Carbon Device Management -->
<carbon.devicemgt.version>3.0.182</carbon.devicemgt.version>
<carbon.devicemgt.version>3.0.184</carbon.devicemgt.version>
<carbon.devicemgt.version.range>[3.0.0, 4.0.0)</carbon.devicemgt.version.range>
<!-- Carbon App Management -->