/** * This method defines for finding list of <code>TempFipaRecord</code> records that belong to the * current user in specified section. */ public PagedResult getRowsetPageByPage( int firstResult, int maxResultSet, boolean countTotalRecords, String sortField, String filter, AbstractUser currentuser, String section, AbstractUser receiveFrom, String receiveFromSection) throws StorageException { try { return tempFipaRecordDao.getUserBiblioRowsetPageByPage( firstResult, maxResultSet, countTotalRecords, sortField, filter, currentuser, section, receiveFrom, receiveFromSection); } catch (Exception ex) { log.error(ex.getMessage(), ex); throw new StorageException(ex.getMessage(), ex); } }
/** * This method defines for finding <code>TempFipaRecord</code> object according to TempFipaReport * object. * * @nli:service-method */ public ResultPage getReport( TempFipaReport reportObject, int firstResult, int maxResultSet, GridFilter gridFilter) { return tempFipaRecordDao.getReport(reportObject, firstResult, maxResultSet, gridFilter); }