private JournalEntry createJournalEntry()

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


    private JournalEntry createJournalEntry(String actionIdentifier, String transactionType, String transactionDate, String message, String loginUser) {
        final JournalEntry fromPrepareToNostroEntry = new JournalEntry();
        fromPrepareToNostroEntry.setTransactionIdentifier(actionIdentifier);
        fromPrepareToNostroEntry.setTransactionType(transactionType);
        fromPrepareToNostroEntry.setTransactionDate(transactionDate);
        fromPrepareToNostroEntry.setMessage(message);
        fromPrepareToNostroEntry.setClerk(loginUser);
        return fromPrepareToNostroEntry;
    }