mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Commenting this due to policy compliance warn will block the device
This commit is contained in:
parent
f28406553f
commit
d0a2c5521c
@ -174,18 +174,18 @@ public class ComplianceDecisionPointImpl implements ComplianceDecisionPoint {
|
||||
@Override
|
||||
public void markDeviceAsNoneCompliance(DeviceIdentifier deviceIdentifier) throws PolicyComplianceException {
|
||||
|
||||
try {
|
||||
DeviceManagementProviderService service = this.getDeviceManagementProviderService();
|
||||
Device device = service.getDevice(deviceIdentifier);
|
||||
service.setStatus(deviceIdentifier, device.getEnrolmentInfo().getOwner(),
|
||||
EnrolmentInfo.Status.BLOCKED);
|
||||
|
||||
} catch (DeviceManagementException e) {
|
||||
String msg = "Error occurred while marking device as none compliance " + deviceIdentifier.getId() + " - " +
|
||||
deviceIdentifier.getType();
|
||||
log.error(msg, e);
|
||||
throw new PolicyComplianceException(msg, e);
|
||||
}
|
||||
// try {
|
||||
// DeviceManagementProviderService service = this.getDeviceManagementProviderService();
|
||||
// Device device = service.getDevice(deviceIdentifier);
|
||||
// service.setStatus(deviceIdentifier, device.getEnrolmentInfo().getOwner(),
|
||||
// EnrolmentInfo.Status.BLOCKED);
|
||||
//
|
||||
// } catch (DeviceManagementException e) {
|
||||
// String msg = "Error occurred while marking device as none compliance " + deviceIdentifier.getId() + " - " +
|
||||
// deviceIdentifier.getType();
|
||||
// log.error(msg, e);
|
||||
// throw new PolicyComplianceException(msg, e);
|
||||
// }
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Loading…
Reference in New Issue
Block a user