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

This commit is contained in:
prabathabey 2015-06-16 14:45:44 +05:30
parent f7dbfa7985
commit 0e05a992a5
2 changed files with 12 additions and 0 deletions

View File

@ -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;

View File

@ -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;