mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
fixed device lock issue
This commit is contained in:
parent
fc61128b8b
commit
fb6eded30c
@ -77,8 +77,8 @@ public class OperationHandler {
|
|||||||
}
|
}
|
||||||
} else if (Constants.SyncMLResponseCodes.PIN_NOTFOUND.equals(status.getData())) {
|
} else if (Constants.SyncMLResponseCodes.PIN_NOTFOUND.equals(status.getData())) {
|
||||||
for (Operation operation : pendingDataOperations) {
|
for (Operation operation : pendingDataOperations) {
|
||||||
if (operation.getId() == status.getCommandReference() && (OperationCode.Command.DEVICE_LOCK.equals(
|
if (operation.getId() == status.getCommandReference() &&
|
||||||
operation.getCode()))) {
|
(PluginConstants.OperationCodes.DEVICE_LOCK.equals(operation.getCode()))) {
|
||||||
operation.setStatus(Operation.Status.ERROR);
|
operation.setStatus(Operation.Status.ERROR);
|
||||||
if (syncmlDocument.getHeader().getSource().getLocURI() != null) {
|
if (syncmlDocument.getHeader().getSource().getLocURI() != null) {
|
||||||
updateStatus(syncmlDocument.getHeader().getSource().getLocURI(), pendingDataOperations);
|
updateStatus(syncmlDocument.getHeader().getSource().getLocURI(), pendingDataOperations);
|
||||||
@ -485,5 +485,6 @@ public class OperationHandler {
|
|||||||
throw new WindowsOperationException("Error occurred while getting effective policy.", e);
|
throw new WindowsOperationException("Error occurred while getting effective policy.", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user