aboutsummaryrefslogtreecommitdiffstats
path: root/feature-lifecycle/src/test/resources/example.policy.drools.controller.tosca.json
blob: f5a9151f4fd7b9d61e94af20ac40b74bd782ed0e (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
45
46
47
48
49
50
51
52
53
54
{
    "tosca_definitions_version": "tosca_simple_yaml_1_0_0",
    "topology_template": {
        "policies": [
            {
                "example": {
                    "type": "onap.policies.drools.Controller",
                    "type_version": "1.0.0",
                    "version": "1.0.0",
                    "name": "example",
                    "metadata": {
                        "policy-id": "example"
                    },
                    "properties": {
                        "controllerName": "lifecycle",
                        "sourceTopics": [
                            {
                                "topicName": "DCAE_TOPIC",
                                "serialization": [
                                    {
                                        "eventClass": "org.onap.policy.controlloop.CanonicalOnset",
                                        "eventFilter": "[?($.closedLoopEventStatus == 'ONSET')]",
                                        "customSerializer": {
                                            "customSerializerClass": "org.onap.policy.controlloop.util.Serialization",
                                            "jsonParser": "gson"
                                        }
                                    }
                                ]
                            }
                        ],
                        "sinkTopics": [
                            {
                                "topicName": "APPC-CL",
                                "serialization": [
                                    {
                                        "eventClass": "org.onap.policy.appc.Response",
                                        "eventFilter": "[?($.CommonHeader && $.Status)]",
                                        "customSerializer": {
                                            "customSerializerClass": "org.onap.policy.appc.util.Serialization",
                                            "jsonParser": "gsonPretty"
                                        }
                                    }
                                ]
                            }
                        ],
                        "customConfig": {
                            "field1" : "value1"
                        }
                    }
                }
            }
        ]
    }
}