fix template-1-1.json

rtchandler_fix
Bernd Brandl 2022-06-17 07:57:57 +02:00
parent 98e90a3009
commit 278fbe4735
2 changed files with 36 additions and 36 deletions

View File

@ -6,29 +6,29 @@ config:
customService1: customService1:
- name: "ifs-006 (SQS) TsddCallTopic - IN" - name: "ifs-006 (SQS) TsddCallTopic - IN"
- className1: com.bmw.cc.ts.datadispatch.integration.aws.CallTopicSqsListener - className: com.bmw.cc.ts.datadispatch.integration.aws.CallTopicSqsListener
- methodName1: processMessage - methodName: processMessage
- methodArgs1: com.bmw.cd.logging.CdllLoggingContext,software.amazon.awssdk.services.sqs.model.Message - methodArgs: com.bmw.cd.logging.CdllLoggingContext,software.amazon.awssdk.services.sqs.model.Message
- returnType1: void - returnType: void
customService2: customService2:
- name: "ifs-005 (SQS) EVNS2EventQueue - OUT" - name: "ifs-005 (SQS) EVNS2EventQueue - OUT"
- className1: com.bmw.cc.ts.datadispatch.integration.evns2.boundary.Evns2ESI - className: com.bmw.cc.ts.datadispatch.integration.evns2.boundary.Evns2ESI
- methodName1: send - methodName: send
- methodArgs1: java.lang.String - methodArgs: java.lang.String
- returnType1: void - returnType: void
customService3: customService3:
- name: "ifs-003 (SQS) FbmQueue - OUT" - name: "ifs-003 (SQS) FbmQueue - OUT"
- className1: com.bmw.cc.ts.datadispatch.integration.fbm.boundary.FbmESI - className: com.bmw.cc.ts.datadispatch.integration.fbm.boundary.FbmESI
- methodName1: send - methodName: send
- methodArgs1: com.bmw.fbm.SendKeyDataFBM - methodArgs: com.bmw.fbm.SendKeyDataFBM
- returnType1: void - returnType: void
customService4: customService4:
- name: "ifs (Kinesis) vhs_ts_diagnostic_kinesis_stream - OUT" - name: "ifs (Kinesis) vhs_ts_diagnostic_kinesis_stream - OUT"
- className1: com.bmw.cc.ts.datadispatch.integration.vhs.boundary.VhsClientESI - className: com.bmw.cc.ts.datadispatch.integration.vhs.boundary.VhsClientESI
- methodName1: dispatch - methodName: dispatch
- methodArgs1: com.bmw.cc.ts.datadispatch.bm.data.VhsPushData - methodArgs: com.bmw.cc.ts.datadispatch.bm.data.VhsPushData
- returnType1: void - returnType: void

View File

@ -1,23 +1,23 @@
{ {
"enabled": true, "enabled": true,
"name": "{{.name}}", "name": "{{.name}}",
"processGroups": [], "processGroups": [],
"queueEntryPoint": false, "queueEntryPoint": false,
"queueEntryPointType": null, "queueEntryPointType": null,
"rules": [ "rules": [
{
"annotations": [],
"className": "{{.className}}",
"enabled": true,
"fileName": "",
"matcher": "EQUALS",
"methodRules": [
{ {
"annotations": [], "argumentTypes": ["{{.methodArgs}}"],
"className": "{{.className1}}", "methodName": "{{.methodName}}",
"enabled": true, "returnType": "{{.returnType}}"
"fileName": "",
"matcher": "EQUALS",
"methodRules": [
{
"argumentTypes": ["{{.methodArgs1}}"],
"methodName": "{{.methodName1}}",
"returnType": "{{.returnType1}}"
}
]
} }
] ]
}
]
} }