Retrieves an error list for the specified Hybrid App package for the specified time period, and paginates the results.
PaginationResult<MobileHybridAppErrorVO> getMobileHybridAppErrorList(int startIndex, int maxRecordsToReturn, MobileHybridAppIDVO id, String userName, Calendar startDate, Calendar endDate, String orderByField, boolean bAscending) throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
// Get HybridApp error list MobileHybridAppIDVO hybridAppID = new MobileHybridAppIDVO(); hybridAppID.setVersion(1); hybridAppID.setWID(6); Calendar startDate = Calendar.getInstance(); startDate.set(2009, 9, 30); Calendar endDate = Calendar.getInstance(); PaginationResult<MobileHybridAppErrorVO> result = mobileHybridApp .getMobileHybridAppErrorList(0, 1, hybridAppID, "TEST4", startDate, endDate, null, true);