seam update to new templates
parent
205c475866
commit
d9b952b171
|
|
@ -1,43 +1,49 @@
|
|||
config:
|
||||
- customService1: template-1-1a.json
|
||||
- customService2: template-1-1b.json
|
||||
- customService3: template-1-1c.json
|
||||
- customService4: template-1-1d.json
|
||||
- customService5: template-1-2e.json
|
||||
- customService1: template-1-1.json
|
||||
- customService2: template-1-1.json
|
||||
- customService3: template-1-1.json
|
||||
- customService4: template-1-1.json
|
||||
- customService5: template-1-2.json
|
||||
|
||||
customService1:
|
||||
- name: "VDLM_seam - ifs-004 (SQS) ServiceDemand - IN"
|
||||
- className: com.bmw.cc.seam.api.servicedemandevent.v1.boundary.ServiceDemandEventMDB
|
||||
- methodName: listen
|
||||
- returnType: void
|
||||
- name: "ifs-004 (SQS) ServiceDemand - IN"
|
||||
- className1: com.bmw.cc.seam.api.servicedemandevent.v1.boundary.ServiceDemandEventMDB
|
||||
- methodName1: listen
|
||||
- methodArgs1: java.lang.String,java.util.Map,org.springframework.cloud.aws.messaging.listener.Acknowledgment
|
||||
- returnType1: void
|
||||
- skipDeployment: "false"
|
||||
|
||||
customService2:
|
||||
- name: "VDLM_seam - ifs-005 (SQS) ServiceAppointment - IN"
|
||||
- className: com.bmw.cc.seam.api.appointment.v1.boundary.AppointmentListenerMDB
|
||||
- methodName: listen
|
||||
- returnType: void
|
||||
- name: "ifs-005 (SQS) ServiceAppointment - IN"
|
||||
- className1: com.bmw.cc.seam.api.appointment.v1.boundary.AppointmentListenerMDB
|
||||
- methodName1: listen
|
||||
- methodArgs1: java.lang.String,java.util.Map
|
||||
- returnType1: void
|
||||
- skipDeployment: "false"
|
||||
|
||||
customService3:
|
||||
- name: "VDLM_seam - ifs-003 (SQS) ServiceNotificationFeedback - IN"
|
||||
- className: com.bmw.cc.seam.api.notificationfeedback.v1.boundary.ServiceNotificationFeedbackListenerMDB
|
||||
- methodName: listen
|
||||
- returnType: void
|
||||
- name: "ifs-003 (SQS) ServiceNotificationFeedback - IN"
|
||||
- className1: com.bmw.cc.seam.api.notificationfeedback.v1.boundary.ServiceNotificationFeedbackListenerMDB
|
||||
- methodName1: listen
|
||||
- methodArgs1: java.lang.String,java.util.Map,org.springframework.cloud.aws.messaging.listener.Acknowledgment
|
||||
- returnType1: void
|
||||
- skipDeployment: "false"
|
||||
|
||||
customService4:
|
||||
- name: "VDLM_seam - ifs (SQS) ServiceNotification - OUT"
|
||||
- className: com.bmw.cc.seam.integration.notificationservice.boundary.ServiceNotificationESI
|
||||
- methodName: send
|
||||
- returnType: void
|
||||
- name: "ifs (SQS) ServiceNotification - OUT"
|
||||
- className1: com.bmw.cc.seam.integration.notificationservice.boundary.ServiceNotificationESI
|
||||
- methodName1: send
|
||||
- methodArgs1: com.bmw.cc.seam.integration.notificationservice.entity.ServiceNotification,java.lang.String
|
||||
- returnType1: void
|
||||
- skipDeployment: "false"
|
||||
|
||||
customService5:
|
||||
- name: "VDLM_seam - cdh: ifs-001 (Kinesis) Reporting - OUT"
|
||||
- name: "cdh: ifs-001 (Kinesis) Reporting - OUT"
|
||||
- className: com.bmw.cc.seam.integration.datalake.boundary.DataLakeESI
|
||||
- methodName1: sendAsync
|
||||
- methodArgs1: java.lang.String,java.lang.String
|
||||
- returnType1: void
|
||||
- methodName2: sendSync
|
||||
- methodArgs2: java.lang.String
|
||||
- returnType2: void
|
||||
- skipDeployment: "false"
|
||||
|
|
|
|||
|
|
@ -13,10 +13,7 @@
|
|||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [
|
||||
"java.lang.String",
|
||||
"java.util.Map"
|
||||
],
|
||||
"argumentTypes": [],
|
||||
"methodName": "{{.methodName}}",
|
||||
"returnType": "{{.returnType}}"
|
||||
}
|
||||
|
|
@ -7,15 +7,15 @@
|
|||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"className": "{{.className1}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [],
|
||||
"methodName": "{{.methodName}}",
|
||||
"returnType": "{{.returnType}}"
|
||||
"argumentTypes": ["{{.methodArgs1}}"],
|
||||
"methodName": "{{.methodName1}}",
|
||||
"returnType": "{{.returnType1}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,27 +0,0 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [
|
||||
"java.lang.String",
|
||||
"java.util.Map",
|
||||
"org.springframework.cloud.aws.messaging.listener.Acknowledgment"
|
||||
],
|
||||
"methodName": "{{.methodName}}",
|
||||
"returnType": "{{.returnType}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [
|
||||
"java.lang.String",
|
||||
"java.util.Map",
|
||||
"org.springframework.cloud.aws.messaging.listener.Acknowledgment"
|
||||
],
|
||||
"methodName": "{{.methodName}}",
|
||||
"returnType": "{{.returnType}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [
|
||||
"com.bmw.cc.seam.integration.notificationservice.entity.ServiceNotification",
|
||||
"java.lang.String"
|
||||
],
|
||||
"methodName": "{{.methodName}}",
|
||||
"returnType": "{{.returnType}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": ["{{.methodArgs1}}"],
|
||||
"methodName": "{{.methodName1}}",
|
||||
"returnType": "{{.returnType1}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": ["{{.methodArgs2}}"],
|
||||
"methodName": "{{.methodName2}}",
|
||||
"returnType": "{{.returnType2}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -7,31 +7,26 @@
|
|||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"className": "{{.className1}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [
|
||||
"java.lang.String",
|
||||
"java.lang.String"
|
||||
],
|
||||
"argumentTypes": ["{{.methodArgs1}}"],
|
||||
"methodName": "{{.methodName1}}",
|
||||
"returnType": "{{.returnType1}}"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"className": "{{.className2}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [
|
||||
"java.lang.String"
|
||||
],
|
||||
"argumentTypes": ["{{.methodArgs2}}"],
|
||||
"methodName": "{{.methodName2}}",
|
||||
"returnType": "{{.returnType2}}"
|
||||
}
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className1}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [],
|
||||
"methodName": "{{.methodName1}}",
|
||||
"returnType": "{{.returnType1}}"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className2}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [],
|
||||
"methodName": "{{.methodName2}}",
|
||||
"returnType": "{{.returnType2}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue