vps configuration changes
parent
2d5a5bb523
commit
0ce7abefb4
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure custom services?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Custom+Services) page to configure your custom services.
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
config:
|
||||
- customService1: template-1-3.json
|
||||
|
||||
customService1:
|
||||
- name: VpsJoynrApi
|
||||
- className: com.bmw.cc.conn.vps.joynr.provider.control.ProvisioningVehicleProvider
|
||||
- methodName: sendVehicleDataForProvisioningComUnit
|
||||
- returnType: void
|
||||
- methodName2: sendVehicleDataForProvisioningHeadUnit
|
||||
- returnType2: void
|
||||
- methodName3: sendVehicleProvisioningResult
|
||||
- returnType3: void
|
||||
- skipDeployment: "false"
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [],
|
||||
"methodName": "{{.methodName}}",
|
||||
"returnType": "{{.returnType}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": [],
|
||||
"methodName": "{{.methodName}}",
|
||||
"returnType": "{{.returnType}}"
|
||||
},
|
||||
{
|
||||
"argumentTypes": [],
|
||||
"methodName": "{{.methodName2}}",
|
||||
"returnType": "{{.returnType2}}"
|
||||
},
|
||||
{
|
||||
"argumentTypes": [],
|
||||
"methodName": "{{.methodName3}}",
|
||||
"returnType": "{{.returnType3}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue