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

@ -7,15 +7,15 @@
"rules": [ "rules": [
{ {
"annotations": [], "annotations": [],
"className": "{{.className1}}", "className": "{{.className}}",
"enabled": true, "enabled": true,
"fileName": "", "fileName": "",
"matcher": "EQUALS", "matcher": "EQUALS",
"methodRules": [ "methodRules": [
{ {
"argumentTypes": ["{{.methodArgs1}}"], "argumentTypes": ["{{.methodArgs}}"],
"methodName": "{{.methodName1}}", "methodName": "{{.methodName}}",
"returnType": "{{.returnType1}}" "returnType": "{{.returnType}}"
} }
] ]
} }