Adapting changes done to the upstream interfaces

This commit is contained in:
prabathabey 2015-05-29 16:53:01 +05:30
parent 8c4eb2899e
commit f9f0e2a6a4
3 changed files with 11 additions and 0 deletions

View File

@ -116,4 +116,5 @@ public class MobileDevice implements Serializable {
public void setDeviceProperties(Map<String, String> deviceProperties) {
this.deviceProperties = deviceProperties;
}
}

View File

@ -191,6 +191,11 @@ public class AndroidDeviceManager implements DeviceMgtService {
return true;
}
@Override
public boolean isClaimable(DeviceIdentifier deviceIdentifier) throws DeviceManagementException {
return false;
}
@Override
public boolean updateDeviceInfo(DeviceIdentifier deviceIdentifier, Device device) throws DeviceManagementException {
boolean status;

View File

@ -96,6 +96,11 @@ public class WindowsDeviceManager implements DeviceMgtService {
return true;
}
@Override
public boolean isClaimable(DeviceIdentifier deviceIdentifier) throws DeviceManagementException {
return false;
}
@Override
public boolean updateDeviceInfo(DeviceIdentifier deviceIdentifier, Device device) throws DeviceManagementException {
return true;