Renamed dialogType to messageType
This commit is contained in:
parent
65d983a5e7
commit
dcbbe043f0
|
@ -8,7 +8,7 @@ import net.codinux.banking.fints.model.JobContextType
|
|||
|
||||
class MessageContext(
|
||||
val jobType: JobContextType,
|
||||
val dialogType: MessageType,
|
||||
val messageType: MessageType,
|
||||
val jobNumber: Int,
|
||||
val dialogNumber: Int,
|
||||
val messageNumber: Int,
|
||||
|
|
|
@ -97,7 +97,7 @@ open class MessageLogCollector(
|
|||
return "${twoDigits(context.jobNumber)}_${twoDigits(context.dialogNumber)}_${twoDigits(context.messageNumber)}_" +
|
||||
"${context.bank.bankCode}_${context.bank.customerId}" +
|
||||
"${ context.account?.let { "_${it.accountIdentifier}" } ?: "" }_" +
|
||||
"${context.jobType.name}_${context.dialogType.name} " +
|
||||
"${context.jobType.name}_${context.messageType.name} " +
|
||||
"${getMessageTypeString(type)}:"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue