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 argumentTypes
intangibles-services-alerts-update
Bernd Brandl (DE-722) 2022-05-09 10:47:32 +02:00 committed by Arnel Arnautovic (ext.)
commit 41aa9136d7
3 changed files with 54 additions and 6 deletions

View File

@ -1,9 +1,21 @@
config: config:
- customService1: template-1-1.json - customService1: template-1-2.json
- customService2: template-1-1.json
customService1: customService1:
- name: "VDLM_scallservice - ifs-002 (JOYNR) notifyMaintenanceStatus - IN" - name: "VDLM_scallservice - ifs-002 (JOYNR) requestMaintenanceStatus/confirmMaintenanceStatus - OUT"
- className: com.bmw.cc.ts.scallservice.bm.maintenance.boundary.MaintenanceConfirmBF - className: com.bmw.cc.ts.scallservice.joynr.consumer.boundary.SCallServiceV1Consumer
- methodName: notifyMaintenanceStatus - methodName1: confirmMaintenanceStatus
- returnType: void - returnType1: void
- methodName2: requestMaintenanceStatus
- returnType2: void
- skipDeployment: "false" - 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"

View File

@ -13,7 +13,7 @@
"matcher": "EQUALS", "matcher": "EQUALS",
"methodRules": [ "methodRules": [
{ {
"argumentTypes": [], "argumentTypes": ["com.bmw.cc.ts.joynr.consumer.entity.NotifyMaintenanceVehicleResponse"],
"methodName": "{{.methodName}}", "methodName": "{{.methodName}}",
"returnType": "{{.returnType}}" "returnType": "{{.returnType}}"
} }

View File

@ -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}}"
}
]
}
]
}