Pull request #206: [TR] added scallservice JoyNr argumentTypes
Merge in OPAPM/cd_e2e_monitoring_config from CD_VDLM_scallservice to master * commit '2e36c323af7e681e5383b483956dc888469562fa': added scallservice JoyNr argumentTypesintangibles-services-alerts-update
commit
41aa9136d7
|
|
@ -1,9 +1,21 @@
|
|||
config:
|
||||
- customService1: template-1-1.json
|
||||
- customService1: template-1-2.json
|
||||
- customService2: template-1-1.json
|
||||
|
||||
customService1:
|
||||
- name: "VDLM_scallservice - ifs-002 (JOYNR) requestMaintenanceStatus/confirmMaintenanceStatus - OUT"
|
||||
- className: com.bmw.cc.ts.scallservice.joynr.consumer.boundary.SCallServiceV1Consumer
|
||||
- methodName1: confirmMaintenanceStatus
|
||||
- returnType1: void
|
||||
- methodName2: requestMaintenanceStatus
|
||||
- returnType2: void
|
||||
- skipDeployment: "false"
|
||||
|
||||
|
||||
customService2:
|
||||
- name: "VDLM_scallservice - ifs-002 (JOYNR) notifyMaintenanceStatus - IN"
|
||||
- className: com.bmw.cc.ts.scallservice.bm.maintenance.boundary.MaintenanceConfirmBF
|
||||
- methodName: notifyMaintenanceStatus
|
||||
- returnType: void
|
||||
- skipDeployment: "false"
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [],
|
||||
"argumentTypes": ["com.bmw.cc.ts.joynr.consumer.entity.NotifyMaintenanceVehicleResponse"],
|
||||
"methodName": "{{.methodName}}",
|
||||
"returnType": "{{.returnType}}"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": ["joynr.de.bmw.infotainment.telematic.common.CommonTypes.RequestId","joynr.de.bmw.infotainment.telematic.common.CommonTypes.ResultCode"],
|
||||
"methodName": "{{.methodName1}}",
|
||||
"returnType": "{{.returnType1}}"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [ "joynr.de.bmw.infotainment.telematic.common.CommonTypes.RequestId" ],
|
||||
"methodName": "{{.methodName2}}",
|
||||
"returnType": "{{.returnType2}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue