Adapting changes done to the upstream interfaces

revert-dabc3590
prabathabey 10 years ago
parent 8c4eb2899e
commit f9f0e2a6a4

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

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

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

Loading…
Cancel
Save