Package org.cyclos.services.banking
Interface TransferFilterService
-
- All Superinterfaces:
CRUDService<TransferFilterDTO,TransferFilterData,AccountTypeVO>,Service
- All Known Subinterfaces:
TransferFilterServiceLocal
public interface TransferFilterService extends CRUDService<TransferFilterDTO,TransferFilterData,AccountTypeVO>
Service interface for transfer filters. A transfer filter is a groups of transfer types associated to an account type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<TransferFilterWithAccountTypeVO>list(AccountTypeVO fromAccountTypeVO, AccountTypeVO toAccountTypeVO)Returns the transfer filters from the given source account type to the given destination account type, taking into account the logged user permissions over transfer filtersPage<TransferFilterVO>search(@NotNull TransferFilterQuery query)Searches for transfer filters, according to the given query-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
-
-
-
Method Detail
-
list
List<TransferFilterWithAccountTypeVO> list(AccountTypeVO fromAccountTypeVO, AccountTypeVO toAccountTypeVO) throws FrameworkException
Returns the transfer filters from the given source account type to the given destination account type, taking into account the logged user permissions over transfer filters- Throws:
FrameworkException
-
search
Page<TransferFilterVO> search(@NotNull @NotNull TransferFilterQuery query) throws FrameworkException
Searches for transfer filters, according to the given query- Throws:
FrameworkException
-
-