Package org.cyclos.impl.banking
Interface TransQueryHandler<Q extends AbstractTransQuery,P extends BuildTransQueryParams<Q>>
-
- All Known Subinterfaces:
InstallmentQueryHandler,TransactionQueryHandler,TransferQueryHandler
- All Known Implementing Classes:
BaseTransactionQueryHandlerImpl,InstallmentQueryHandlerImpl,TransactionQueryHandlerImpl,TransferQueryHandlerImpl,TransQueryHandlerImpl
public interface TransQueryHandler<Q extends AbstractTransQuery,P extends BuildTransQueryParams<Q>>Handles queries on either transfers, transactions or installments
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DBQuery<?>build(P params)Builds the db query based on the given parametersQBigDecimalgetAmountPath()QCurrencygetCurrencyPath()QDategetDatePath()QAccountgetFromAccountPath()QAccountTypegetFromAccountTypePath()QGroupgetFromGroupPath()QUsergetFromUserPath()com.querydsl.core.types.dsl.NumberPath<Long>getIdPath()QTransferTypegeTransferTypePath()QAccountgetToAccountPath()QAccountTypegetToAccountTypePath()QGroupgetToGroupPath()QUsergetToUserPath()com.querydsl.core.types.dsl.StringPathgetTransactionNumberPath()QTransactiongetTransactionPath()QTransferTypegetTransferTypePath()
-
-
-
Method Detail
-
getAmountPath
QBigDecimal getAmountPath()
-
getCurrencyPath
QCurrency getCurrencyPath()
-
getDatePath
QDate getDatePath()
-
getFromAccountPath
QAccount getFromAccountPath()
-
getFromAccountTypePath
QAccountType getFromAccountTypePath()
-
getFromGroupPath
QGroup getFromGroupPath()
-
getFromUserPath
QUser getFromUserPath()
-
getIdPath
com.querydsl.core.types.dsl.NumberPath<Long> getIdPath()
-
geTransferTypePath
QTransferType geTransferTypePath()
-
getToAccountPath
QAccount getToAccountPath()
-
getToAccountTypePath
QAccountType getToAccountTypePath()
-
getToGroupPath
QGroup getToGroupPath()
-
getToUserPath
QUser getToUserPath()
-
getTransactionNumberPath
com.querydsl.core.types.dsl.StringPath getTransactionNumberPath()
-
getTransactionPath
QTransaction getTransactionPath()
-
getTransferTypePath
QTransferType getTransferTypePath()
-
-