Retrieves a list of queue items for the specified Hybrid App package, and deletes the specified queue items.
PaginationResult<MobileHybridAppQueueItemVO> getMobileHybridAppQueueItems(int startIndex, int maxRecordsToReturn, MobileHybridAppIDVO id, List<Integer> deviceIDs, List<String> userNames, String orderByField, boolean ascending) throws SUPAdminException; void deleteMobileHybridAppQueueItem(Integer queueItemID, Boolean forTransformQueue) throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
// Get HybridApp queue items MobileHybridAppIDVO hybridAppID = new MobileHybridAppIDVO(); hybridAppID.setVersion(1); hybridAppID.setWID(1); List<Integer> deviceIds = new ArrayList<Integer>(); deviceIds.add(4); PaginationResult<MobileHybridAppQueueItemVO> list = mobileHybridApp .getMobileHybridAppQueueItems(0, 2, hybridAppID, null, null, null, false); //Delete HybridApp queue items. mobileHybridApp.deleteMobileHybridAppQueueItem(1, true);