Fixing Android and Windows MDM plugins to be compliant with changes introduced to device.mgt.core

revert-dabc3590
prabathabey 9 years ago
parent f7dbfa7985
commit 0e05a992a5

@ -196,6 +196,12 @@ public class AndroidDeviceManagementService implements DeviceManagementService {
return false;
}
@Override
public boolean setStatus(DeviceIdentifier deviceIdentifier, String currentUser,
EnrollmentStatus enrollmentStatus) throws DeviceManagementException {
return false;
}
@Override
public boolean updateDeviceInfo(DeviceIdentifier deviceIdentifier, Device device) throws DeviceManagementException {
boolean status;

@ -101,6 +101,12 @@ public class WindowsDeviceManagementService implements DeviceManagementService {
return false;
}
@Override
public boolean setStatus(DeviceIdentifier deviceIdentifier, String currentUser,
EnrollmentStatus enrollmentStatus) throws DeviceManagementException {
return false;
}
@Override
public boolean updateDeviceInfo(DeviceIdentifier deviceIdentifier, Device device) throws DeviceManagementException {
return true;

Loading…
Cancel
Save