tweaked the userName --> username

This commit is contained in:
hongwei 2020-06-25 12:08:31 +02:00 committed by shuang
parent 7df03df884
commit 5de6c75fbf
4 changed files with 8 additions and 8 deletions

View File

@ -351,7 +351,7 @@ object AkkaConnector_vDec2018 extends Connector with AkkaConnectorActorInit {
transactionRequestType=transactionRequestTypeExample.value,
currency=currencyExample.value,
userId=userIdExample.value,
userName="string")
username="string")
),
exampleInboundMessage = (
InBoundGetChallengeThreshold(inboundAdapterCallContext=MessageDocsSwaggerDefinitions.inboundAdapterCallContext,
@ -382,7 +382,7 @@ object AkkaConnector_vDec2018 extends Connector with AkkaConnectorActorInit {
accountId=AccountId(accountIdExample.value),
viewId=ViewId(viewIdExample.value),
userId=userIdExample.value,
userName="string",
username="string",
transactionRequestType=transactionRequestTypeExample.value,
currency=currencyExample.value)
),

View File

@ -201,7 +201,7 @@ trait RestConnector_vMar2019 extends Connector with KafkaHelper with MdcLoggable
transactionRequestType=transactionRequestTypeExample.value,
currency=currencyExample.value,
userId=userIdExample.value,
userName="string")
username="string")
),
exampleInboundMessage = (
InBoundGetChallengeThreshold(inboundAdapterCallContext= InboundAdapterCallContext(correlationId=correlationIdExample.value,
@ -265,7 +265,7 @@ trait RestConnector_vMar2019 extends Connector with KafkaHelper with MdcLoggable
accountId=AccountId(accountIdExample.value),
viewId=ViewId(viewIdExample.value),
userId=userIdExample.value,
userName="string",
username="string",
transactionRequestType=transactionRequestTypeExample.value,
currency=currencyExample.value)
),

View File

@ -123,7 +123,7 @@ trait StoredProcedureConnector_vDec2019 extends Connector with MdcLoggable {
transactionRequestType=transactionRequestTypeExample.value,
currency=currencyExample.value,
userId=userIdExample.value,
userName=userNameExample.value)
username=userNameExample.value)
),
exampleInboundMessage = (
InBoundGetChallengeThreshold(inboundAdapterCallContext=MessageDocsSwaggerDefinitions.inboundAdapterCallContext,
@ -154,7 +154,7 @@ trait StoredProcedureConnector_vDec2019 extends Connector with MdcLoggable {
accountId=AccountId(accountIdExample.value),
viewId=ViewId(viewIdExample.value),
userId=userIdExample.value,
userName=userNameExample.value,
username=userNameExample.value,
transactionRequestType=transactionRequestTypeExample.value,
currency=currencyExample.value)
),

View File

@ -53,7 +53,7 @@ case class OutBoundGetChallengeThreshold(outboundAdapterCallContext: OutboundAda
transactionRequestType: String,
currency: String,
userId: String,
userName: String) extends TopicTrait
username: String) extends TopicTrait
case class InBoundGetChallengeThreshold(inboundAdapterCallContext: InboundAdapterCallContext, status: Status, data: AmountOfMoney) extends InBoundTrait[AmountOfMoney]
@ -62,7 +62,7 @@ case class OutBoundGetChargeLevel(outboundAdapterCallContext: OutboundAdapterCal
accountId: AccountId,
viewId: ViewId,
userId: String,
userName: String,
username: String,
transactionRequestType: String,
currency: String) extends TopicTrait
case class InBoundGetChargeLevel(inboundAdapterCallContext: InboundAdapterCallContext, status: Status, data: AmountOfMoney) extends InBoundTrait[AmountOfMoney]