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