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(
|
class MessageContext(
|
||||||
val jobType: JobContextType,
|
val jobType: JobContextType,
|
||||||
val dialogType: MessageType,
|
val messageType: MessageType,
|
||||||
val jobNumber: Int,
|
val jobNumber: Int,
|
||||||
val dialogNumber: Int,
|
val dialogNumber: Int,
|
||||||
val messageNumber: Int,
|
val messageNumber: Int,
|
||||||
|
|
|
@ -97,7 +97,7 @@ open class MessageLogCollector(
|
||||||
return "${twoDigits(context.jobNumber)}_${twoDigits(context.dialogNumber)}_${twoDigits(context.messageNumber)}_" +
|
return "${twoDigits(context.jobNumber)}_${twoDigits(context.dialogNumber)}_${twoDigits(context.messageNumber)}_" +
|
||||||
"${context.bank.bankCode}_${context.bank.customerId}" +
|
"${context.bank.bankCode}_${context.bank.customerId}" +
|
||||||
"${ context.account?.let { "_${it.accountIdentifier}" } ?: "" }_" +
|
"${ context.account?.let { "_${it.accountIdentifier}" } ?: "" }_" +
|
||||||
"${context.jobType.name}_${context.dialogType.name} " +
|
"${context.jobType.name}_${context.messageType.name} " +
|
||||||
"${getMessageTypeString(type)}:"
|
"${getMessageTypeString(type)}:"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue