public InteropTransferResponseData getTransfer()

in service/src/main/java/org/apache/fineract/cn/interoperation/service/internal/service/InteropService.java [215:223]


    public InteropTransferResponseData getTransfer(@NotNull String transactionCode, @NotNull String transferCode) {
        InteropActionEntity action = validateAndGetAction(transactionCode, calcActionIdentifier(transferCode, InteropActionType.PREPARE),
                InteropActionType.PREPARE, false);
        if (action == null)
            action = validateAndGetAction(transactionCode, calcActionIdentifier(transferCode, InteropActionType.COMMIT),
                    InteropActionType.COMMIT);

        return InteropTransferResponseData.build(transactionCode, action.getState(), action.getExpirationDate(), transferCode, action.getCreatedOn());
    }