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 createdfeature/android-app-distribution
parent
efae617416
commit
dfff3116f4
|
|
@ -11,7 +11,7 @@ joynrTrigger:
|
||||||
- argType1: java.lang.String
|
- argType1: java.lang.String
|
||||||
- returnType1: void
|
- returnType1: void
|
||||||
- methodName2: desiredStateUpdated
|
- methodName2: desiredStateUpdated
|
||||||
- argType2: java.lang.String,java.lang.String
|
- argType2: java.lang.String","java.lang.String
|
||||||
- returnType2: void
|
- returnType2: void
|
||||||
- skipDeployment: "false"
|
- skipDeployment: "false"
|
||||||
|
|
||||||
|
|
@ -22,13 +22,13 @@ joynrTriggerCallback:
|
||||||
- argType1: io.joynr.proxy.ReplyContext
|
- argType1: io.joynr.proxy.ReplyContext
|
||||||
- returnType1: void
|
- returnType1: void
|
||||||
- methodName2: requestStateUpdateFailed
|
- methodName2: requestStateUpdateFailed
|
||||||
- argType2: io.joynr.exceptions.JoynrRuntimeException,io.joynr.proxy.ReplyContext
|
- argType2: io.joynr.exceptions.JoynrRuntimeException","io.joynr.proxy.ReplyContext
|
||||||
- returnType2: void
|
- returnType2: void
|
||||||
- methodName3: desiredStateUpdatedSuccess
|
- methodName3: desiredStateUpdatedSuccess
|
||||||
- argType3: io.joynr.proxy.ReplyContext
|
- argType3: io.joynr.proxy.ReplyContext
|
||||||
- returnType3: void
|
- returnType3: void
|
||||||
- methodName4: desiredStateUpdatedFailed
|
- methodName4: desiredStateUpdatedFailed
|
||||||
- argType4: io.joynr.exceptions.JoynrRuntimeException,io.joynr.proxy.ReplyContext
|
- argType4: io.joynr.exceptions.JoynrRuntimeException","io.joynr.proxy.ReplyContext
|
||||||
- returnType4: void
|
- returnType4: void
|
||||||
- skipDeployment: "false"
|
- skipDeployment: "false"
|
||||||
|
|
||||||
|
|
@ -46,7 +46,10 @@ vsCmdbCallback:
|
||||||
vsCmdbAuth:
|
vsCmdbAuth:
|
||||||
- name: AndroidVsCmdbAuth
|
- name: AndroidVsCmdbAuth
|
||||||
- className: com.bmw.cc.apinext.processingsvc.integration.vscmdb.kafka.AwsWebIdentityClientCallbackHandler
|
- className: com.bmw.cc.apinext.processingsvc.integration.vscmdb.kafka.AwsWebIdentityClientCallbackHandler
|
||||||
- methodName1: onFailure
|
- methodName1: handle
|
||||||
- argType1: java.lang.Exception
|
- argType1: javax.security.auth.callback.Callback[]
|
||||||
- returnType1: void
|
- returnType1: void
|
||||||
|
- methodName2: onFailure
|
||||||
|
- argType2: java.lang.Exception
|
||||||
|
- returnType2: void
|
||||||
- skipDeployment: "false"
|
- skipDeployment: "false"
|
||||||
|
|
@ -16,6 +16,11 @@
|
||||||
"argumentTypes": ["{{.argType1}}"],
|
"argumentTypes": ["{{.argType1}}"],
|
||||||
"methodName": "{{.methodName1}}",
|
"methodName": "{{.methodName1}}",
|
||||||
"returnType": "{{.returnType1}}"
|
"returnType": "{{.returnType1}}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"argumentTypes": ["{{.argType2}}"],
|
||||||
|
"methodName": "{{.methodName2}}",
|
||||||
|
"returnType": "{{.returnType2}}"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue