Package org.cyclos.services.banking
Interface TransferFeeService
-
- All Superinterfaces:
CRUDService<TransferFeeDTO,TransferFeeData,TransferTypeVO>,Service
- All Known Subinterfaces:
TransferFeeServiceLocal
public interface TransferFeeService extends CRUDService<TransferFeeDTO,TransferFeeData,TransferTypeVO>
Service interface for transfer fees
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<TransferFeeVO>list(@NotNull TransferTypeVO transferType)Returns a list of all transfer fees for the given transfer typeList<TransferTypeWithCurrencyVO>listPossibleGeneratedTransferTypes(@NotNull TransferFeeDTO fee)Returns the possible generated transfer types for the given transfer fee-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
-
-
-
Method Detail
-
list
List<TransferFeeVO> list(@NotNull @NotNull TransferTypeVO transferType) throws FrameworkException
Returns a list of all transfer fees for the given transfer type- Throws:
FrameworkException
-
listPossibleGeneratedTransferTypes
List<TransferTypeWithCurrencyVO> listPossibleGeneratedTransferTypes(@NotNull @NotNull TransferFeeDTO fee) throws FrameworkException
Returns the possible generated transfer types for the given transfer fee- Throws:
FrameworkException
-
-