added SQS/MQS rtcad

rtchandler_fix
Bernd Brandl 2022-06-15 10:46:52 +02:00
parent 501d2e86b9
commit 6796b19524
3 changed files with 55 additions and 5 deletions

View File

@ -1,9 +1,23 @@
config:
- customService1: template-1-1.json
- customService1: template-2-1.json
customService1:
- name: myJOYNRService
- className: com.bmw.cc.conn.this.is.just.an.exampleClasss
- methodName: exampleJoynrMethod
- name: "ifs-010 (SQS) RtcadCallTopic - IN"
- className: com.bmw.cc.ts.rtcad.integration.aws.CallTopicSqsListener
- methodName: processMessage
- methodArgs: com.bmw.cd.logging.CdllLoggingContext,software.amazon.awssdk.services.sqs.model.Message
- returnType: void
- skipDeployment: "true"
- skipDeployment: "false"
customService2:
- name: "ifs-006 (MQS) RTCTransformationRequest/Response - IN/OUT"
- className1: com.bmw.cc.ts.rtcad.bm.boundary.IstaPdmTransformationMF
- methodName1: onMessage
- returnType1: void
- methodArgs1: javax.jms.Message
- className2: package com.bmw.cc.ts.rtcad.bm.control.RTCPDMServiceBA
- methodName2: pdmResultProcessed
- returnType2: void
- methodArgs2: java.lang.String,java.lang.String,com.bmw.cc.ts.rtcad.bm.dto.RTCKeyData,java.lang.String,java.lang.String
- skipDeployment: "false"

View File

@ -13,7 +13,7 @@
"matcher": "EQUALS",
"methodRules": [
{
"argumentTypes": [],
"argumentTypes": ["{{.methodArgs}}"],
"methodName": "{{.methodName}}",
"returnType": "{{.returnType}}"
}

View File

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