This method has been deprecated. Unblocks the mobile workflow queue for the selected workflows and devices.
void unblockWorkflowQueueForDevices(MobileWorkflowIDVO workflowID, List<Integer> deviceIDs, Boolean forTransformQueue) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
// prepare mobile workflow ID MobileWorkflowIDVO workflowID = new MobileWorkflowIDVO(); workflowID.setVersion(100); workflowID.setWID(2); // prepare device ids List<Integer> deviceIDs = new ArrayList<Integer>(); deviceIDs.add(1); deviceIDs.add(2); // Unblock mobile workflow queue for devices workflow.unblockWorkflowQueueForDevices(workflowID, deviceIDs, true);