add vs-cmdb callbacks so that we can directly see if something is wrong here.
parent
0b5395bc2c
commit
6374506f77
|
|
@ -1,6 +1,7 @@
|
||||||
config:
|
config:
|
||||||
- joynrTrigger: joynrTrigger.json
|
- joynrTrigger: joynrTrigger.json
|
||||||
- joynrTriggerCallback: joynrTriggerCallback.json
|
- joynrTriggerCallback: joynrTriggerCallback.json
|
||||||
|
- vsCmdbCallback: vs-cmdb.json
|
||||||
|
|
||||||
joynrTrigger:
|
joynrTrigger:
|
||||||
- name: AndroidJoynrTriggers
|
- name: AndroidJoynrTriggers
|
||||||
|
|
@ -28,4 +29,15 @@ joynrTriggerCallback:
|
||||||
- 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"
|
||||||
|
|
||||||
|
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"
|
- skipDeployment: "false"
|
||||||
|
|
@ -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}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue