added additional custom services
parent
abe93ac1aa
commit
9e357956df
|
|
@ -2,6 +2,8 @@ config:
|
|||
- customService1: template-2-1.json
|
||||
- customService2: template-2-1.json
|
||||
- customService3: template-1-1.json
|
||||
- customService4: template-1-1.json
|
||||
- customService5: template-1-1.json
|
||||
|
||||
customService1:
|
||||
- name: "VDLM_rtchandler - ifs-010 (SQS) RtcTeleXIn/Out - IN/OUT"
|
||||
|
|
@ -28,4 +30,18 @@ customService3:
|
|||
- className: com.bmw.cc.ts.rtchandler.bm.common.control.classificationrequest.ClassificationRequestQueueSender
|
||||
- methodName: sendClassificationRequestMessage
|
||||
- returnType: void
|
||||
- skipDeployment: "false"
|
||||
- skipDeployment: "false"
|
||||
|
||||
customService4:
|
||||
- name: "VDLM_rtchandler - (Timer) timeout"
|
||||
- className: com.bmw.cc.ts.rtchandler.bm.common.timer.CallTimeoutTimerService
|
||||
- methodName: handleTimer
|
||||
- returnType: void
|
||||
- skipDeployment: "false"
|
||||
|
||||
customService5:
|
||||
- name: "VDLM_rtchandler - (Timer) deletion"
|
||||
- className: com.bmw.cc.ts.rtchandler.bm.common.control.cleanup.DbCleanUpBA
|
||||
- methodName: cleanUp
|
||||
- returnType: void
|
||||
- skipDeployment: "false"
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [],
|
||||
"methodName": "{{.methodName1}}",
|
||||
"returnType": "{{.returnType1}}"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [],
|
||||
"methodName": "{{.methodName2}}",
|
||||
"returnType": "{{.returnType2}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue