Interface PaymentMapper
-
- All Known Implementing Classes:
PaymentMapperImpl
public interface PaymentMapper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TransactionDetailsBOtoDepositTransactionDetails(AmountBO amount, DepositAccountBO depositAccount, AccountReferenceBO creditorAccount, LocalDate postingDate, String postingLineId, BalanceBO balanceAfterTransaction)PaymenttoPayment(PaymentBO payment)PaymentBOtoPaymentBO(Payment payment)List<PaymentBO>toPaymentBOList(List<Payment> payments)PaymentOrderDetailsBOtoPaymentOrder(PaymentBO payment)PaymentTargetBOtoPaymentTargetBO(PaymentTarget target)PaymentTargetDetailsBOtoPaymentTargetDetails(String id, PaymentTargetBO paymentTarget, LocalDate postingTime, List<ExchangeRateBO> rate, BalanceBO balanceAfterTransaction)PaymentTargetDetailsBOtoPaymentTargetDetailsBatch(String id, PaymentBO payment, AmountBO amount, LocalDate postingTime, List<ExchangeRateBO> rate, BalanceBO balanceAfterTransaction)TransactionStatustoTransactionStatus(TransactionStatusBO status)
-
-
-
Method Detail
-
toTransactionStatus
TransactionStatus toTransactionStatus(TransactionStatusBO status)
-
toPaymentTargetBO
PaymentTargetBO toPaymentTargetBO(PaymentTarget target)
-
toPaymentOrder
PaymentOrderDetailsBO toPaymentOrder(PaymentBO payment)
-
toPaymentTargetDetails
PaymentTargetDetailsBO toPaymentTargetDetails(String id, PaymentTargetBO paymentTarget, LocalDate postingTime, List<ExchangeRateBO> rate, BalanceBO balanceAfterTransaction)
-
toPaymentTargetDetailsBatch
PaymentTargetDetailsBO toPaymentTargetDetailsBatch(String id, PaymentBO payment, AmountBO amount, LocalDate postingTime, List<ExchangeRateBO> rate, BalanceBO balanceAfterTransaction)
-
toDepositTransactionDetails
TransactionDetailsBO toDepositTransactionDetails(AmountBO amount, DepositAccountBO depositAccount, AccountReferenceBO creditorAccount, LocalDate postingDate, String postingLineId, BalanceBO balanceAfterTransaction)
-
-