mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Adapting changes done to the upstream interfaces
This commit is contained in:
parent
8c4eb2899e
commit
f9f0e2a6a4
@ -116,4 +116,5 @@ public class MobileDevice implements Serializable {
|
||||
public void setDeviceProperties(Map<String, String> deviceProperties) {
|
||||
this.deviceProperties = deviceProperties;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user