Class FundTransferServiceImpl
java.lang.Object
org.training.fundtransfer.service.implementation.FundTransferServiceImpl
- All Implemented Interfaces:
FundTransferService
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfundTransfer
(FundTransferRequest fundTransferRequest) Transfers funds from one account to another.getAllTransfersByAccountId
(String accountId) Retrieves a list of fund transfers associated with the given account ID.getTransferDetailsFromReferenceId
(String referenceId) Retrieves the details of a fund transfer based on the given reference ID.
-
Constructor Details
-
FundTransferServiceImpl
public FundTransferServiceImpl()
-
-
Method Details
-
fundTransfer
Transfers funds from one account to another.- Specified by:
fundTransfer
in interfaceFundTransferService
- Parameters:
fundTransferRequest
- The request object containing the details of the fund transfer.- Returns:
- The response object indicating the status of the fund transfer.
- Throws:
ResourceNotFound
- If the requested account is not found on the server.AccountUpdateException
- If the account status is pending or inactive.InsufficientBalance
- If the required amount to transfer is not available.
-
getTransferDetailsFromReferenceId
Retrieves the details of a fund transfer based on the given reference ID.- Specified by:
getTransferDetailsFromReferenceId
in interfaceFundTransferService
- Parameters:
referenceId
- The reference ID of the fund transfer.- Returns:
- The FundTransferDto containing the details of the fund transfer.
- Throws:
ResourceNotFound
- if the fund transfer is not found.
-
getAllTransfersByAccountId
Retrieves a list of fund transfers associated with the given account ID.- Specified by:
getAllTransfersByAccountId
in interfaceFundTransferService
- Parameters:
accountId
- The ID of the account- Returns:
- A list of fund transfer DTOs
-