mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Merge pull request #853 from ruwany/master
Bumping cdmf version and updating unit tests
This commit is contained in:
commit
acc768822a
@ -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 {
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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 {
|
||||
|
||||
2
pom.xml
2
pom.xml
@ -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 -->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user