Fix issues with argument types in case multiple are used. I hope it works like this.

Also add handle for cmdb auth so that service will be created
feature/android-app-distribution
Holomek Christopher; BMW Group 2023-01-13 08:17:46 +01:00
parent efae617416
commit dfff3116f4
2 changed files with 13 additions and 5 deletions

View File

@ -11,7 +11,7 @@ joynrTrigger:
- argType1: java.lang.String
- returnType1: void
- methodName2: desiredStateUpdated
- argType2: java.lang.String,java.lang.String
- argType2: java.lang.String","java.lang.String
- returnType2: void
- skipDeployment: "false"
@ -22,13 +22,13 @@ joynrTriggerCallback:
- argType1: io.joynr.proxy.ReplyContext
- returnType1: void
- methodName2: requestStateUpdateFailed
- argType2: io.joynr.exceptions.JoynrRuntimeException,io.joynr.proxy.ReplyContext
- argType2: io.joynr.exceptions.JoynrRuntimeException","io.joynr.proxy.ReplyContext
- returnType2: void
- methodName3: desiredStateUpdatedSuccess
- argType3: io.joynr.proxy.ReplyContext
- returnType3: void
- methodName4: desiredStateUpdatedFailed
- argType4: io.joynr.exceptions.JoynrRuntimeException,io.joynr.proxy.ReplyContext
- argType4: io.joynr.exceptions.JoynrRuntimeException","io.joynr.proxy.ReplyContext
- returnType4: void
- skipDeployment: "false"
@ -46,7 +46,10 @@ vsCmdbCallback:
vsCmdbAuth:
- name: AndroidVsCmdbAuth
- className: com.bmw.cc.apinext.processingsvc.integration.vscmdb.kafka.AwsWebIdentityClientCallbackHandler
- methodName1: onFailure
- argType1: java.lang.Exception
- methodName1: handle
- argType1: javax.security.auth.callback.Callback[]
- returnType1: void
- methodName2: onFailure
- argType2: java.lang.Exception
- returnType2: void
- skipDeployment: "false"

View File

@ -16,6 +16,11 @@
"argumentTypes": ["{{.argType1}}"],
"methodName": "{{.methodName1}}",
"returnType": "{{.returnType1}}"
},
{
"argumentTypes": ["{{.argType2}}"],
"methodName": "{{.methodName2}}",
"returnType": "{{.returnType2}}"
}
]
}