Package org.cyclos.impl.search
Interface TransferSearchHandler
-
- All Superinterfaces:
EntitySearchHandler<Transfer,AccountHistoriesOverviewQuery,AccountHistoryOverviewEntryVO>
- All Known Implementing Classes:
ElasticsearchTransferSearchHandlerImpl,PostgresqlTransferSearchHandlerImpl
public interface TransferSearchHandler extends EntitySearchHandler<Transfer,AccountHistoriesOverviewQuery,AccountHistoryOverviewEntryVO>
Interface for searching transfers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccountHistoriesOverviewStatusVOgetStatus(AccountHistoriesOverviewQuery params)Calculates the overview status for a general transfers searchcom.mysema.commons.lang.CloseableIterator<AccountHistoryEntry>iterateAccountHistory(AccountHistoryQuery query)Return an iterator for a specific account historyPage<AccountHistoryEntryVO>searchAccountHistory(AccountHistoryQuery query)Searches for a specific account history-
Methods inherited from interface org.cyclos.impl.search.EntitySearchHandler
index, indexName, iterateEntities, iterateIds, reindex, search
-
-
-
-
Method Detail
-
getStatus
AccountHistoriesOverviewStatusVO getStatus(AccountHistoriesOverviewQuery params)
Calculates the overview status for a general transfers search
-
iterateAccountHistory
com.mysema.commons.lang.CloseableIterator<AccountHistoryEntry> iterateAccountHistory(AccountHistoryQuery query)
Return an iterator for a specific account history
-
searchAccountHistory
Page<AccountHistoryEntryVO> searchAccountHistory(AccountHistoryQuery query)
Searches for a specific account history
-
-