add vs-cmdb callbacks so that we can directly see if something is wrong here.

CD_ASBC-HAL-CL
Holomek Christopher; BMW Group 2022-12-09 08:04:38 +01:00
parent 0b5395bc2c
commit 6374506f77
2 changed files with 40 additions and 0 deletions

View File

@ -1,6 +1,7 @@
config:
- joynrTrigger: joynrTrigger.json
- joynrTriggerCallback: joynrTriggerCallback.json
- vsCmdbCallback: vs-cmdb.json
joynrTrigger:
- name: AndroidJoynrTriggers
@ -28,4 +29,15 @@ joynrTriggerCallback:
- methodName4: desiredStateUpdatedFailed
- argType4: io.joynr.exceptions.JoynrRuntimeException,io.joynr.proxy.ReplyContext
- returnType4: void
- skipDeployment: "false"
vsCmdbCallback:
- name: AndroidVsCmdbCallbacks
- className: com.bmw.cc.apinext.processingsvc.integration.vscmdb.VsCmdbCallback
- methodName1: onSuccess
- argType1: org.springframework.kafka.support.SendResult
- returnType1: void
- methodName2: onFailure
- argType2: java.lang.Throwable
- returnType2: void
- skipDeployment: "false"

View File

@ -0,0 +1,28 @@
{
"enabled": true,
"name": "{{.name}}",
"processGroups": [],
"queueEntryPoint": false,
"queueEntryPointType": null,
"rules": [
{
"annotations": [],
"className": "{{.className}}",
"enabled": true,
"fileName": "",
"matcher": "EQUALS",
"methodRules": [
{
"argumentTypes": ["{{.argType1}}"],
"methodName": "{{.methodName1}}",
"returnType": "{{.returnType1}}"
},
{
"argumentTypes": ["{{.argType2}}"],
"methodName": "{{.methodName2}}",
"returnType": "{{.returnType2}}"
}
]
}
]
}