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
|
{
"dmaapProvider": {
"name": "DMaaP simulator",
"topicSweepSec": 300,
"restServerParameters": {
}
},
"topicSinks": [
{
"topic": "APPC-LCM-READ",
"servers": ["localhost"],
"port": 3905,
"topicCommInfrastructure": "DMAAP",
"https": true
}
],
"topicSources": [
{
"topic": "APPC-LCM-WRITE",
"servers": ["localhost"],
"port": 3905,
"topicCommInfrastructure": "DMAAP",
"https": true
}
],
"topicServers": [
{
"name": "Invalid Topic simulator",
"providerClass": "org.onap.policy.simulators.InvalidTopicServer",
"sink": "APPC-LCM-READ",
"source": "APPC-LCM-WRITE"
}
]
}
|