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
|
{
"name":"SDCDistributionGroup",
"restServerParameters":{
"host":"0.0.0.0",
"port":6969,
"userName":"healthcheck",
"password":"zb!XztG34"
},
"receptionHandlerParameters":{
"DummyReceptionHandler":{
"receptionHandlerType":"DummyReceptionHandler",
"receptionHandlerClassName":"org.onap.policy.distribution.main.testclasses.DummyReceptionHandler",
"receptionHandlerConfigurationName":"dummyReceptionHandlerConfiguration",
"pluginHandlerParameters":{
"policyDecoders":{
"DummyDecoder":{
"decoderType":"DummyDecoder",
"decoderClassName":"org.onap.policy.distribution.main.testclasses.DummyDecoder",
"decoderConfigurationParameters": "dummyDecoderConfiguration"
}
}
}
}
},
"receptionHandlerConfigurationParameters":{
"dummyReceptionHandlerConfiguration":{
"parameterClassName":"org.onap.policy.distribution.main.testclasses.DummyReceptionHandlerParameterGroup",
"parameters":{
"myStringParameter": "stringValue",
"myIntegerParameter":20,
"myBooleanParameter": true
}
}
},
"policyDecoderConfigurationParameters":{
"dummyDecoderConfiguration":{
"parameterClassName":"org.onap.policy.distribution.main.testclasses.DummyPolicyDecoderParameterGroup",
"parameters":{
"policyName": "SamplePolicy",
"policyType": "DUMMY"
}
}
}
}
|