Package org.cyclos.services.banking
Interface AccountTypeService
-
- All Superinterfaces:
CRUDService<AccountTypeDTO,AccountTypeData,AccountTypeNature>,Service
- All Known Subinterfaces:
AccountTypeServiceLocal
public interface AccountTypeService extends CRUDService<AccountTypeDTO,AccountTypeData,AccountTypeNature>
Service interface for account types
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccountTypeSearchDatagetSearchData()Returns data used to search account typesPage<AccountTypeWithCurrencyVO>search(@NotNull AccountTypeQuery query)Searches for account types, according to the specified query parameters-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
-
-
-
Method Detail
-
getSearchData
AccountTypeSearchData getSearchData() throws FrameworkException
Returns data used to search account types- Throws:
FrameworkException
-
search
Page<AccountTypeWithCurrencyVO> search(@NotNull @NotNull AccountTypeQuery query) throws FrameworkException
Searches for account types, according to the specified query parameters- Throws:
FrameworkException
-
-