Fix simulator topics for lower case
[policy/models.git] / models-interactions / model-simulators / src / test / resources / org / onap / policy / simulators / dmaap / TopicParameters.json
1 {
2     "topicSources": [
3         {
4             "topic": "MY-TOPIC",
5             "servers": [
6                 "localhost:${port}"
7             ],
8             "topicCommInfrastructure": "dmaap",
9             "fetchTimeout": 100
10         },
11         {
12             "topic": "MY-AUTH-TOPIC",
13             "servers": [
14                 "localhost:${authPort}"
15             ],
16             "topicCommInfrastructure": "dmaap",
17             "fetchTimeout": 100,
18             "useHttps": true,
19             "allowSelfSignedCerts": true,
20             "userName": "my-username",
21             "password": "my-password"
22         }
23     ],
24     "topicSinks": [
25         {
26             "topic": "MY-TOPIC",
27             "servers": [
28                 "localhost:${port}"
29             ],
30             "topicCommInfrastructure": "dmaap"
31         },
32         {
33             "topic": "MY-AUTH-TOPIC",
34             "servers": [
35                 "localhost:${authPort}"
36             ],
37             "topicCommInfrastructure": "dmaap",
38             "useHttps": true,
39             "allowSelfSignedCerts": true,
40             "userName": "my-username",
41             "password": "my-password"
42         }
43     ]
44 }