From 2816ea6b7672a5519628a5134a5ef719166b27f7 Mon Sep 17 00:00:00 2001 From: "waqas.ikram" Date: Wed, 27 Jun 2018 16:16:42 +0100 Subject: Adding integration test module Change-Id: If94ff28724a31269cf20b32c43fa0790c3b2dac3 Issue-ID: POLICY-865 Signed-off-by: waqas.ikram --- .../events/Context_AvroEventAlbum_EventIn.json | 111 + .../Context_AvroEventAlbum_EventOutCompare.json | 117 + .../events/Context_JavaEventAlbum_EventIn.json | 97 + .../Context_JavaEventAlbum_EventOutCompare.json | 102 + .../src/test/resources/events/EventsIn.json | 1100 +++ .../src/test/resources/events/EventsIn.xmlfile | 2422 +++++++ .../test/resources/events/EventsOutExpected.json | 1900 +++++ .../test/resources/policymodels/JMSTestModel.json | 456 ++ .../policymodels/SamplePolicyModelMVEL.json | 7036 +++++++++++++++++++ .../SamplePolicyModelMVELDivideByZero.json | 7372 ++++++++++++++++++++ .../resources/policymodels/VPNPolicyModelAvro.json | 4557 ++++++++++++ .../resources/policymodels/VPNPolicyModelJava.json | 4557 ++++++++++++ .../prodcons/Context_AvroEventAlbum_file2file.json | 51 + .../prodcons/Context_JavaEventAlbum_file2file.json | 43 + .../prodcons/File2FileFilteredInJsonEvent.json | 44 + .../prodcons/File2FileFilteredInOutJsonEvent.json | 69 + .../prodcons/File2FileFilteredOutJsonEvent.json | 56 + .../resources/prodcons/File2FileJsonEvent.json | 43 + .../test/resources/prodcons/File2FileXmlEvent.json | 45 + .../prodcons/File2RESTJsonEventBadHTTPMethod.json | 45 + .../prodcons/File2RESTJsonEventBadURL.json | 44 + .../prodcons/File2RESTJsonEventNoURL.json | 41 + .../resources/prodcons/File2RESTJsonEventPost.json | 44 + .../File2RESTJsonEventPostBadResponse.json | 44 + .../resources/prodcons/File2RESTJsonEventPut.json | 45 + .../test/resources/prodcons/JMS2JMSJsonEvent.json | 59 + .../resources/prodcons/JMS2JMSObjectEvent.json | 58 + .../resources/prodcons/Kafka2KafkaJsonEvent.json | 63 + .../resources/prodcons/Kafka2KafkaXmlEvent.json | 65 + .../prodcons/LBPolicy_ExecModel_file2kafka.json | 52 + .../prodcons/REST2FileJsonEmptyEvents.json | 44 + .../resources/prodcons/REST2FileJsonEvent.json | 44 + .../prodcons/REST2FileJsonEventBadHTTPMethod.json | 45 + .../prodcons/REST2FileJsonEventBadResponse.json | 44 + .../prodcons/REST2FileJsonEventBadURL.json | 44 + .../prodcons/REST2FileJsonEventNoURL.json | 41 + .../resources/prodcons/RESTServerJsonEvent.json | 50 + .../RESTServerJsonEventConsumerNotSync.json | 47 + ...ESTServerJsonEventConsumerStandaloneNoHost.json | 48 + ...ESTServerJsonEventConsumerStandaloneNoPort.json | 49 + .../prodcons/RESTServerJsonEventContextAvro.json | 58 + .../prodcons/RESTServerJsonEventContextJava.json | 58 + .../prodcons/RESTServerJsonEventDivideByZero.json | 50 + .../prodcons/RESTServerJsonEventMultiIn.json | 79 + .../prodcons/RESTServerJsonEventProducerHost.json | 53 + .../RESTServerJsonEventProducerNotSync.json | 44 + .../prodcons/RESTServerJsonEventProducerPort.json | 53 + .../RESTServerJsonEventProducerStandalone.json | 53 + .../resources/prodcons/Ws2WsClientJsonEvent.json | 47 + .../resources/prodcons/Ws2WsClientXMLEvent.json | 49 + .../resources/prodcons/Ws2WsServerJsonEvent.json | 47 + .../resources/prodcons/Ws2WsServerXMLEvent.json | 49 + 52 files changed, 31834 insertions(+) create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/events/Context_AvroEventAlbum_EventIn.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/events/Context_AvroEventAlbum_EventOutCompare.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/events/Context_JavaEventAlbum_EventIn.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/events/Context_JavaEventAlbum_EventOutCompare.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/events/EventsIn.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/events/EventsIn.xmlfile create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/events/EventsOutExpected.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/policymodels/JMSTestModel.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/policymodels/SamplePolicyModelMVEL.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/policymodels/SamplePolicyModelMVELDivideByZero.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/policymodels/VPNPolicyModelAvro.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/policymodels/VPNPolicyModelJava.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Context_AvroEventAlbum_file2file.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Context_JavaEventAlbum_file2file.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileFilteredInJsonEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileFilteredInOutJsonEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileFilteredOutJsonEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileJsonEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileXmlEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventBadHTTPMethod.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventBadURL.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventNoURL.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventPost.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventPostBadResponse.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventPut.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/JMS2JMSJsonEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/JMS2JMSObjectEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Kafka2KafkaJsonEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Kafka2KafkaXmlEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/LBPolicy_ExecModel_file2kafka.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEmptyEvents.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventBadHTTPMethod.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventBadResponse.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventBadURL.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventNoURL.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventConsumerNotSync.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventConsumerStandaloneNoHost.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventConsumerStandaloneNoPort.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventContextAvro.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventContextJava.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventDivideByZero.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventMultiIn.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerHost.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerNotSync.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerPort.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerStandalone.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsClientJsonEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsClientXMLEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsServerJsonEvent.json create mode 100644 testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsServerXMLEvent.json (limited to 'testsuites/integration/integration-uservice-test/src/test/resources') diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/events/Context_AvroEventAlbum_EventIn.json b/testsuites/integration/integration-uservice-test/src/test/resources/events/Context_AvroEventAlbum_EventIn.json new file mode 100644 index 000000000..456b80aa1 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/events/Context_AvroEventAlbum_EventIn.json @@ -0,0 +1,111 @@ +{ + "nameSpace": "org.onap.policy.apex.test", + "name": "Test_InputEvent", + "version": "0.0.1", + "source": "test", + "target": "apex", + "CustomMap": { + "mapValue": { + "hello": "goodbye", + "here": "there", + "now": "then" + } + }, + "AvroMap": { + "address0": "This is the zeroth address", + "address1": "This is the first address", + "address2": "This is the second address", + "address3": "This is the third address" + }, + "CustomDate0": { + "time": 1499424303, + "year": 2017, + "month": 6, + "day": 7, + "hour": 10, + "minute": 45, + "second": 2, + "milliSecond": 123 + }, + "CustomDate2": { + "dateValue": { + "time": 1499424303, + "year": 2017, + "month": 6, + "day": 7, + "hour": 10, + "minute": 45, + "second": 2, + "milliSecond": 123 + }, + "timeZoneString": "Europe/Dublin", + "dst": true, + "utcOffset": 3600000, + "localeLanguage": "EN", + "localeCountry": "IE" + }, + "CustomDate1": { + "dateValue": { + "time": 1499424303, + "year": 2017, + "month": 6, + "day": 7, + "hour": 10, + "minute": 45, + "second": 2, + "milliSecond": 123 + }, + "timeZoneString": "Europe/Dublin", + "dst": true + }, + "CustomBoolean": { + "flag": false + }, + "CustomDouble": { + "doubleValue": 6.71E8 + }, + "CustomLong": { + "longValue": 9223372036854775807 + }, + "CustomString": { + "stringValue": "I Wandered Lonely as a Cloud" + }, + "CustomALong": { + "longValue": 9223372036854775807 + }, + "CustomInteger": { + "intValue": -9876543 + }, + "CustomFloat": { + "floatValue": 3E6 + }, + "CustomByte": { + "byteValue": 127 + }, + "CustomSet": { + "setValue": [ + "I", + "once", + "saw", + "a", + "cuddly", + "bear" + ] + }, + "AvroArray": [ + "I", + "once", + "saw", + "a", + "cuddly", + "bear" + ], + "AvroBoolean": false, + "AvroByte": -128, + "AvroShort": 32000, + "AvroInteger": 1234567, + "AvroLong": 1234567890123, + "AvroFloat": 2e23, + "AvroDouble": 1.2345e67, + "AvroString": "The four green provinces of Ireland" +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/events/Context_AvroEventAlbum_EventOutCompare.json b/testsuites/integration/integration-uservice-test/src/test/resources/events/Context_AvroEventAlbum_EventOutCompare.json new file mode 100644 index 000000000..1c30984e7 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/events/Context_AvroEventAlbum_EventOutCompare.json @@ -0,0 +1,117 @@ +{ + "name": "Test_OutputEvent", + "version": "0.0.1", + "nameSpace": "org.onap.policy.apex.test", + "source": "External", + "target": "Apex", + "AvroArray": [ + "I", + "once", + "saw", + "a", + "cuddly", + "bear" + ], + "AvroBoolean": true, + "AvroByte": -127.0, + "AvroDouble": 1.2345E67, + "AvroFloat": 1.9999999999999998E23, + "AvroInteger": 1234568.0, + "AvroLong": 1.234567890124E12, + "AvroMap": { + "address3": "This is the third address", + "address2": "This is the second address", + "address1": "This is the first address", + "address0": "This is the zeroth address" + }, + "AvroShort": 32001.0, + "AvroString": "The four green provinces of Ireland added to end of string", + "CustomALong": { + "longValue": 9.223372036854776E18 + }, + "CustomBoolean": { + "flag": true + }, + "CustomByte": { + "byteValue": 128.0 + }, + "CustomDate0": { + "time": 1.499424303E9, + "year": 1922.0, + "month": 12.0, + "day": 6.0, + "hour": 10.0, + "minute": 45.0, + "second": 2.0, + "milliSecond": 123.0 + }, + "CustomDate1": { + "dateValue": { + "time": 1.499424303E9, + "year": 1922.0, + "month": 12.0, + "day": 6.0, + "hour": 10.0, + "minute": 45.0, + "second": 2.0, + "milliSecond": 123.0 + }, + "dst": true, + "timeZoneString": "Europe/Dublin" + }, + "CustomDate2": { + "dateValue": { + "time": 1.499424303E9, + "year": 1922.0, + "month": 12.0, + "day": 6.0, + "hour": 10.0, + "minute": 45.0, + "second": 2.0, + "milliSecond": 123.0 + }, + "dst": true, + "timeZoneString": "Europe/Dublin", + "utcOffset": 3600000.0, + "localeLanguage": "EN", + "localeCountry": "IE" + }, + "CustomDouble": { + "doubleValue": 6.71000001E8 + }, + "CustomFloat": { + "floatValue": 3000001.0 + }, + "CustomInteger": { + "intValue": -9876542.0 + }, + "CustomLong": { + "longValue": 9.223372036854776E18 + }, + "CustomMap": { + "mapValue": { + "here": "there", + "love": "hate", + "hello": "goodbye", + "good": "bad", + "summer": "winter", + "now": "then" + } + }, + "CustomSet": { + "setValue": [ + "I", + "once", + "saw", + "a", + "cuddly", + "bear", + "with", + "a", + "beard" + ] + }, + "CustomString": { + "stringValue": "I Wandered Lonely as a Cloud added to end of string" + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/events/Context_JavaEventAlbum_EventIn.json b/testsuites/integration/integration-uservice-test/src/test/resources/events/Context_JavaEventAlbum_EventIn.json new file mode 100644 index 000000000..566ba915a --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/events/Context_JavaEventAlbum_EventIn.json @@ -0,0 +1,97 @@ +{ + "nameSpace": "org.onap.policy.apex.test", + "name": "Test_InputEvent", + "version": "0.0.1", + "source": "test", + "target": "apex", + "CustomMap": { + "mapValue": { + "hello": "goodbye", + "here": "there", + "now": "then" + } + }, + "CustomJLong": { + "longValue": 9223372036854775807 + }, + "CustomFloat": { + "floatValue": 3E6 + }, + "CustomString": { + "stringValue": "I Wandered Lonely as a Cloud" + }, + "CustomBoolean": { + "flag": false + }, + "CustomInteger": { + "intValue": -9876543 + }, + "CustomSet": { + "setValue": [ + "I", + "once", + "saw", + "a", + "cuddly", + "bear" + ] + }, + "CustomByte": { + "byteValue": 127 + }, + "CustomDate2": { + "dateValue": { + "time": 1499424303, + "year": 2017, + "month": 6, + "day": 7, + "hour": 10, + "minute": 45, + "second": 2, + "milliSecond": 123 + }, + "timeZoneString": "Europe/Dublin", + "dst": true, + "utcOffset": 3600000, + "localeLanguage": "EN", + "localeCountry": "IE" + }, + "CustomDate0": { + "time": 1499424303, + "year": 2017, + "month": 6, + "day": 7, + "hour": 10, + "minute": 45, + "second": 2, + "milliSecond": 123 + }, + "CustomDate1": { + "dateValue": { + "time": 1499424303, + "year": 2017, + "month": 6, + "day": 7, + "hour": 10, + "minute": 45, + "second": 2, + "milliSecond": 123 + }, + "timeZoneString": "Europe/Dublin", + "dst": true + }, + "CustomDouble": { + "doubleValue": 6.71E8 + }, + "CustomLong": { + "longValue": 9223372036854775807 + }, + "JavaBoolean": false, + "JavaByte": -128, + "JavaShort": 32000, + "JavaInteger": 1234567, + "JavaLong": 1234567890123, + "JavaFloat": 2e23, + "JavaDouble": 1.2345e67, + "JavaString": "The four green provinces of Ireland" +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/events/Context_JavaEventAlbum_EventOutCompare.json b/testsuites/integration/integration-uservice-test/src/test/resources/events/Context_JavaEventAlbum_EventOutCompare.json new file mode 100644 index 000000000..1a06ec6c5 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/events/Context_JavaEventAlbum_EventOutCompare.json @@ -0,0 +1,102 @@ +{ + "name": "Test_OutputEvent", + "version": "0.0.1", + "nameSpace": "org.onap.policy.apex.test", + "source": "External", + "target": "Apex", + "CustomBoolean": { + "flag": false + }, + "CustomByte": { + "byteValue": -128 + }, + "CustomDate0": { + "time": 1499868391, + "year": 1970, + "month": 0, + "day": 18, + "hour": 8, + "minute": 37, + "second": 48, + "milliSecond": 391 + }, + "CustomDate1": { + "dateValue": { + "time": 1499868391, + "year": 1970, + "month": 0, + "day": 18, + "hour": 8, + "minute": 37, + "second": 48, + "milliSecond": 391 + }, + "timeZoneString": "Greenwich Mean Time", + "dst": true + }, + "CustomDate2": { + "dateValue": { + "time": 1499868391, + "year": 1970, + "month": 0, + "day": 18, + "hour": 8, + "minute": 37, + "second": 48, + "milliSecond": 391 + }, + "timeZoneString": "Greenwich Mean Time", + "dst": false, + "utcOffset": 0, + "localeLanguage": "en", + "localeCountry": "" + }, + "CustomDouble": { + "doubleValue": 6.71000001E8 + }, + "CustomFloat": { + "floatValue": 3000001.0 + }, + "CustomInteger": { + "intValue": -9876542 + }, + "CustomJLong": { + "longValue": 9223372036854775807 + }, + "CustomLong": { + "longValue": 9223372036854775807 + }, + "CustomMap": { + "mapValue": { + "hello": "goodbye", + "here": "there", + "now": "then", + "love": "hate", + "summer": "winter", + "good": "bad" + } + }, + "CustomSet": { + "setValue": [ + "I", + "a", + "bear", + "beard", + "cuddly", + "once", + "saw", + "with" + ] + }, + "CustomString": { + "stringValue": "I Wandered Lonely as a Cloud added to end of string" + }, + "JavaBoolean": true, + "JavaByte": -127, + "JavaDouble": 1.2345E67, + "JavaFloat": 2.0E23, + "JavaInteger": 1234568, + "JavaLong": 1234567890124, + "JavaShort": 32001, + "JavaString": "The four green provinces of Ireland added to end of string" +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/events/EventsIn.json b/testsuites/integration/integration-uservice-test/src/test/resources/events/EventsIn.json new file mode 100644 index 000000000..f0a0a3da8 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/events/EventsIn.json @@ -0,0 +1,1100 @@ +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869268, + "TestTemperature": 8071.559 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869269, + "TestTemperature": 517.19727 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 0, + "TestTimestamp": 1469781869269, + "TestTemperature": 9080.866 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869269, + "TestTemperature": 4263.7085 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869269, + "TestTemperature": 2342.069 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869269, + "TestTemperature": 6400.4565 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869269, + "TestTemperature": 9495.611 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 1, + "TestTimestamp": 1469781869269, + "TestTemperature": 4872.2935 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 3, + "TestTimestamp": 1469781869269, + "TestTemperature": 8130.8086 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869269, + "TestTemperature": 2580.434 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 1, + "TestTimestamp": 1469781869269, + "TestTemperature": 3169.4663 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 1, + "TestTimestamp": 1469781869269, + "TestTemperature": 4517.7646 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 3, + "TestTimestamp": 1469781869269, + "TestTemperature": 9600.465 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 1, + "TestTimestamp": 1469781869269, + "TestTemperature": 8720.648 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 1, + "TestTimestamp": 1469781869269, + "TestTemperature": 1031.3821 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 3, + "TestTimestamp": 1469781869270, + "TestTemperature": 959.9608 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 3, + "TestTimestamp": 1469781869270, + "TestTemperature": 1483.7533 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869270, + "TestTemperature": 394.8325 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 1, + "TestTimestamp": 1469781869270, + "TestTemperature": 59.376953 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869270, + "TestTemperature": 862.1466 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 8557.394 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 6732.3687 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 2, + "TestTimestamp": 1469781869270, + "TestTemperature": 7155.3843 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869270, + "TestTemperature": 4896.5264 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 8457.574 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 4085.176 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 1, + "TestTimestamp": 1469781869270, + "TestTemperature": 4198.338 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869270, + "TestTemperature": 105.033516 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 1, + "TestTimestamp": 1469781869270, + "TestTemperature": 8219.068 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 8780.495 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 6224.9775 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 3, + "TestTimestamp": 1469781869270, + "TestTemperature": 4218.1353 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 1, + "TestTimestamp": 1469781869270, + "TestTemperature": 4719.9116 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 2, + "TestTimestamp": 1469781869270, + "TestTemperature": 4592.7275 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 1, + "TestTimestamp": 1469781869270, + "TestTemperature": 7874.2705 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 2, + "TestTimestamp": 1469781869270, + "TestTemperature": 9866.951 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 2, + "TestTimestamp": 1469781869270, + "TestTemperature": 7536.962 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 1, + "TestTimestamp": 1469781869270, + "TestTemperature": 2430.3843 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 2, + "TestTimestamp": 1469781869270, + "TestTemperature": 6369.2866 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 7396.739 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 2, + "TestTimestamp": 1469781869270, + "TestTemperature": 6187.027 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 2216.0667 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 2, + "TestTimestamp": 1469781869270, + "TestTemperature": 4855.6562 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 2, + "TestTimestamp": 1469781869270, + "TestTemperature": 5205.6836 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 1, + "TestTimestamp": 1469781869270, + "TestTemperature": 418.89252 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 2, + "TestTimestamp": 1469781869270, + "TestTemperature": 5307.6343 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 1, + "TestTimestamp": 1469781869270, + "TestTemperature": 7034.2065 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 7784.3804 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869270, + "TestTemperature": 3656.007 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 8538.289 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 2, + "TestTimestamp": 1469781869270, + "TestTemperature": 6515.7104 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 1, + "TestTimestamp": 1469781869270, + "TestTemperature": 4562.0537 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 9030.76 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 9085.617 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869270, + "TestTemperature": 1244.1838 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 1, + "TestTimestamp": 1469781869270, + "TestTemperature": 9286.382 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869270, + "TestTemperature": 9573.472 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 2, + "TestTimestamp": 1469781869270, + "TestTemperature": 9994.268 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 3556.8076 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 1305.1998 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 6063.7573 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 8860.109 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 1599.9061 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 4316.625 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 1, + "TestTimestamp": 1469781869271, + "TestTemperature": 2753.6135 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 4469.7656 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 4155.1416 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 1627.2205 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 1, + "TestTimestamp": 1469781869271, + "TestTemperature": 5554.9585 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 5863.8896 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 9095.753 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 2, + "TestTimestamp": 1469781869271, + "TestTemperature": 5641.7603 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 1, + "TestTimestamp": 1469781869271, + "TestTemperature": 6120.2446 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 3478.2087 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 1807.8446 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 8476.179 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 7418.1934 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 2, + "TestTimestamp": 1469781869271, + "TestTemperature": 4800.719 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 1, + "TestTimestamp": 1469781869271, + "TestTemperature": 8741.285 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 2, + "TestTimestamp": 1469781869271, + "TestTemperature": 2099.0818 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 1, + "TestTimestamp": 1469781869271, + "TestTemperature": 138.22377 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 1, + "TestTimestamp": 1469781869271, + "TestTemperature": 272.6066 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 1, + "TestTimestamp": 1469781869271, + "TestTemperature": 2604.9036 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 540.5176 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 2, + "TestTimestamp": 1469781869271, + "TestTemperature": 1482.7478 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 1053.8315 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 6267.906 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 636.44586 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 902.7964 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 259.42923 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 6066.484 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 2918.8723 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 2, + "TestTimestamp": 1469781869271, + "TestTemperature": 6470.262 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 2603.0845 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 4435.378 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 3989.0928 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 7657.731 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 2, + "TestTimestamp": 1469781869271, + "TestTemperature": 6677.433 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0100", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event1", + "TestMatchCase": 0, + "TestTimestamp": 1469781869271, + "TestTemperature": 9456.176 +} +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0000", + "version": "0.0.1", + "source": "test", + "target": "apex", + "TestSlogan": "Test slogan for External Event0", + "TestMatchCase": 3, + "TestTimestamp": 1469781869271, + "TestTemperature": 8723.999 +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/events/EventsIn.xmlfile b/testsuites/integration/integration-uservice-test/src/test/resources/events/EventsIn.xmlfile new file mode 100644 index 000000000..3c42ddcb2 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/events/EventsIn.xmlfile @@ -0,0 +1,2422 @@ + + + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109829 + + + TestTemperature + 5029.0977 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 9205.635 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 745.0819 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 5303.2686 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 76.91979 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 2514.586 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 5762.7017 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 2932.0693 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 4062.569 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 7330.253 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 4523.48 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 4418.4434 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 2070.6726 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 3211.3796 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 9335.347 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 7486.7 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 7916.7837 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 5593.4805 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 2392.5393 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 3407.845 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 8537.924 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109831 + + + TestTemperature + 2093.1672 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 2938.2634 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 9799.69 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 3682.167 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 8614.255 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 5771.5522 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 5778.1587 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 1829.2201 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 8212.186 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 69.31722 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 2842.4954 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 1680.3956 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 2087.8213 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 954.5702 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 5469.4463 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 2140.287 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 8113.5645 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 1402.2207 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 8310.781 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 3253.3342 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 8409.392 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 8705.976 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 5108.107 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 3716.3972 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 813.75836 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 9086.392 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 5549.1143 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 6378.093 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 654.6241 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 8923.838 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 450.83167 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 1230.132 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 1167.3259 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 3186.9114 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 8806.747 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 4241.6426 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 9857.053 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 7561.059 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109832 + + + TestTemperature + 1073.0768 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 6449.4272 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 5766.172 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 4786.6704 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 9645.206 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 9275.977 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 985.0705 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 8582.512 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 6540.643 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 1312.2606 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 2310.2642 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 7863.311 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 9090.517 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 874.7286 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 89.31577 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 5384.0977 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 3326.373 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 7053.2803 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 1100.3625 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 7318.115 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 7304.7827 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 2811.665 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 4690.1846 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 5624.33 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 1051.4647 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 2689.3574 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 2308.247 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 4999.671 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 3138.606 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 0 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 5719.3364 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 445.14835 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 9498.781 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 757.5476 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 227.3655 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 4751.002 + + + + + Event0100 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event1 + + + TestMatchCase + 2 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 8193.897 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 6397.872 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 6133.35 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 3 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 9280.389 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 1031.0221 + + + + + Event0000 + 0.0.1 + org.onap.policy.apex.domains.sample.events + test + apex + + TestSlogan + Test slogan for External Event0 + + + TestMatchCase + 1 + + + TestTimestamp + 1469787109833 + + + TestTemperature + 2206.1318 + + diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/events/EventsOutExpected.json b/testsuites/integration/integration-uservice-test/src/test/resources/events/EventsOutExpected.json new file mode 100644 index 000000000..4e17d583d --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/events/EventsOutExpected.json @@ -0,0 +1,1900 @@ +{ + "nameSpace": "org.onap.policy.apex.sample.events", + "name": "Event0004", + "version": "0.0.1", + "source": "Act", + "target": "Outside", + "TestActCaseSelected": 3, + "TestActStateTime": 1496941957859, + "TestTemperature": 9080.866, + "TestDecideCaseSelected": 1, + "TestMatchCaseSelected": 2, + "TestTimestamp": 1469781869269, + "TestDecideStateTime": 1496941957854, + "TestMatchCase": 0, + "TestSlogan": "Test slogan for External Event0", + "TestEstablishCaseSelected": 0, + "TestEstablishStateTime": 1496941957849, + "TestMatchStateTime": 1496941957843 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957859, + "TestTemperature" : 4263.7085, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957854, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957849, + "TestMatchStateTime" : 1496941957843 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957860, + "TestTemperature" : 517.19727, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957854, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957848, + "TestMatchStateTime" : 1496941957843 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957862, + "TestTemperature" : 8071.559, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869268, + "TestDecideStateTime" : 1496941957857, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957848, + "TestMatchStateTime" : 1496941957843 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957866, + "TestTemperature" : 2342.069, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957865, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957864, + "TestMatchStateTime" : 1496941957862 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957866, + "TestTemperature" : 6400.4565, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957865, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957864, + "TestMatchStateTime" : 1496941957862 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957867, + "TestTemperature" : 9495.611, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957865, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957864, + "TestMatchStateTime" : 1496941957862 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957870, + "TestTemperature" : 3169.4663, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957870, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957869, + "TestMatchStateTime" : 1496941957868 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957871, + "TestTemperature" : 2580.434, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957870, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957869, + "TestMatchStateTime" : 1496941957868 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957892, + "TestTemperature" : 4872.2935, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957878, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957872, + "TestMatchStateTime" : 1496941957867 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957894, + "TestTemperature" : 4517.7646, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957889, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957882, + "TestMatchStateTime" : 1496941957877 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957898, + "TestTemperature" : 8720.648, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957896, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957895, + "TestMatchStateTime" : 1496941957894 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957898, + "TestTemperature" : 8130.8086, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957893, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957877, + "TestMatchStateTime" : 1496941957872 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957901, + "TestTemperature" : 1031.3821, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957900, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957899, + "TestMatchStateTime" : 1496941957896 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957904, + "TestTemperature" : 1483.7533, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957903, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957901, + "TestMatchStateTime" : 1496941957900 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957906, + "TestTemperature" : 394.8325, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957905, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957904, + "TestMatchStateTime" : 1496941957903 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957909, + "TestTemperature" : 59.376953, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957908, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957907, + "TestMatchStateTime" : 1496941957906 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957908, + "TestTemperature" : 959.9608, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957904, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957901, + "TestMatchStateTime" : 1496941957900 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957911, + "TestTemperature" : 862.1466, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957910, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957909, + "TestMatchStateTime" : 1496941957908 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957914, + "TestTemperature" : 6732.3687, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957913, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957912, + "TestMatchStateTime" : 1496941957911 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957914, + "TestTemperature" : 8557.394, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957913, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957912, + "TestMatchStateTime" : 1496941957911 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957915, + "TestTemperature" : 7155.3843, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957915, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957914, + "TestMatchStateTime" : 1496941957913 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957920, + "TestTemperature" : 4085.176, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957919, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957918, + "TestMatchStateTime" : 1496941957917 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957919, + "TestTemperature" : 8457.574, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957918, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957917, + "TestMatchStateTime" : 1496941957916 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957920, + "TestTemperature" : 4896.5264, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957919, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957917, + "TestMatchStateTime" : 1496941957916 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957923, + "TestTemperature" : 4198.338, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957922, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957921, + "TestMatchStateTime" : 1496941957921 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957923, + "TestTemperature" : 105.033516, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957922, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957922, + "TestMatchStateTime" : 1496941957921 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957922, + "TestTemperature" : 9600.465, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869269, + "TestDecideStateTime" : 1496941957891, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957885, + "TestMatchStateTime" : 1496941957877 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957926, + "TestTemperature" : 8780.495, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957925, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957925, + "TestMatchStateTime" : 1496941957924 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957926, + "TestTemperature" : 8219.068, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957925, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957924, + "TestMatchStateTime" : 1496941957923 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957928, + "TestTemperature" : 6224.9775, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957927, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957926, + "TestMatchStateTime" : 1496941957925 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957930, + "TestTemperature" : 4719.9116, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957929, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957929, + "TestMatchStateTime" : 1496941957928 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957931, + "TestTemperature" : 4592.7275, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957930, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957929, + "TestMatchStateTime" : 1496941957928 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957931, + "TestTemperature" : 4218.1353, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957930, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957928, + "TestMatchStateTime" : 1496941957927 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957932, + "TestTemperature" : 7874.2705, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957931, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957930, + "TestMatchStateTime" : 1496941957929 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957935, + "TestTemperature" : 9866.951, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957934, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957933, + "TestMatchStateTime" : 1496941957932 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957935, + "TestTemperature" : 6369.2866, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957934, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957934, + "TestMatchStateTime" : 1496941957933 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957935, + "TestTemperature" : 7536.962, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957934, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957933, + "TestMatchStateTime" : 1496941957932 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957937, + "TestTemperature" : 2430.3843, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957934, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957933, + "TestMatchStateTime" : 1496941957933 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957938, + "TestTemperature" : 7396.739, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957937, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957937, + "TestMatchStateTime" : 1496941957936 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957939, + "TestTemperature" : 6187.027, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957938, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957937, + "TestMatchStateTime" : 1496941957937 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957941, + "TestTemperature" : 5205.6836, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957940, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957940, + "TestMatchStateTime" : 1496941957939 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957943, + "TestTemperature" : 418.89252, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957942, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957941, + "TestMatchStateTime" : 1496941957941 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957945, + "TestTemperature" : 5307.6343, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957944, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957943, + "TestMatchStateTime" : 1496941957943 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957942, + "TestTemperature" : 2216.0667, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957941, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957940, + "TestMatchStateTime" : 1496941957938 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957945, + "TestTemperature" : 7034.2065, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957945, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957944, + "TestMatchStateTime" : 1496941957944 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957946, + "TestTemperature" : 4855.6562, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957942, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957939, + "TestMatchStateTime" : 1496941957939 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957947, + "TestTemperature" : 7784.3804, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957947, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957946, + "TestMatchStateTime" : 1496941957945 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957949, + "TestTemperature" : 8538.289, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957948, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957947, + "TestMatchStateTime" : 1496941957947 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957951, + "TestTemperature" : 4562.0537, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957951, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957950, + "TestMatchStateTime" : 1496941957950 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957952, + "TestTemperature" : 9030.76, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957951, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957950, + "TestMatchStateTime" : 1496941957950 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957953, + "TestTemperature" : 9085.617, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957953, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957953, + "TestMatchStateTime" : 1496941957952 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957949, + "TestTemperature" : 3656.007, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957948, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957947, + "TestMatchStateTime" : 1496941957947 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957956, + "TestTemperature" : 9286.382, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957955, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957955, + "TestMatchStateTime" : 1496941957954 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957956, + "TestTemperature" : 6515.7104, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957949, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957948, + "TestMatchStateTime" : 1496941957948 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957957, + "TestTemperature" : 1244.1838, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957956, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957954, + "TestMatchStateTime" : 1496941957954 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957959, + "TestTemperature" : 9994.268, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957958, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957958, + "TestMatchStateTime" : 1496941957957 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957960, + "TestTemperature" : 1305.1998, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957959, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957959, + "TestMatchStateTime" : 1496941957958 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957958, + "TestTemperature" : 9573.472, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869270, + "TestDecideStateTime" : 1496941957957, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957956, + "TestMatchStateTime" : 1496941957955 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957960, + "TestTemperature" : 3556.8076, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957959, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957958, + "TestMatchStateTime" : 1496941957958 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957963, + "TestTemperature" : 6063.7573, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957962, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957961, + "TestMatchStateTime" : 1496941957961 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957965, + "TestTemperature" : 8860.109, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957964, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957962, + "TestMatchStateTime" : 1496941957961 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957966, + "TestTemperature" : 2753.6135, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957965, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957965, + "TestMatchStateTime" : 1496941957964 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957967, + "TestTemperature" : 1599.9061, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957966, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957963, + "TestMatchStateTime" : 1496941957962 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957968, + "TestTemperature" : 4316.625, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957967, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957965, + "TestMatchStateTime" : 1496941957963 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957969, + "TestTemperature" : 4469.7656, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957968, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957967, + "TestMatchStateTime" : 1496941957966 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957970, + "TestTemperature" : 4155.1416, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957969, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957968, + "TestMatchStateTime" : 1496941957968 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957972, + "TestTemperature" : 5554.9585, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957971, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957970, + "TestMatchStateTime" : 1496941957969 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957973, + "TestTemperature" : 5863.8896, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957971, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957971, + "TestMatchStateTime" : 1496941957970 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957973, + "TestTemperature" : 9095.753, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957973, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957972, + "TestMatchStateTime" : 1496941957972 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957976, + "TestTemperature" : 6120.2446, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957976, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957975, + "TestMatchStateTime" : 1496941957974 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957977, + "TestTemperature" : 3478.2087, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957976, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957976, + "TestMatchStateTime" : 1496941957975 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957976, + "TestTemperature" : 1627.2205, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957975, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957971, + "TestMatchStateTime" : 1496941957970 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957979, + "TestTemperature" : 5641.7603, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957976, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957975, + "TestMatchStateTime" : 1496941957974 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957985, + "TestTemperature" : 8476.179, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957980, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957979, + "TestMatchStateTime" : 1496941957978 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957987, + "TestTemperature" : 8741.285, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957986, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957986, + "TestMatchStateTime" : 1496941957986 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957987, + "TestTemperature" : 4800.719, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957987, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957986, + "TestMatchStateTime" : 1496941957986 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957988, + "TestTemperature" : 2099.0818, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957988, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957988, + "TestMatchStateTime" : 1496941957987 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957980, + "TestTemperature" : 1807.8446, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957979, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957978, + "TestMatchStateTime" : 1496941957978 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957990, + "TestTemperature" : 272.6066, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957990, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957989, + "TestMatchStateTime" : 1496941957989 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957990, + "TestTemperature" : 7418.1934, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957990, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957989, + "TestMatchStateTime" : 1496941957979 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957991, + "TestTemperature" : 2604.9036, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957990, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957990, + "TestMatchStateTime" : 1496941957989 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957991, + "TestTemperature" : 138.22377, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957990, + "TestMatchCase" : 1, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957988, + "TestMatchStateTime" : 1496941957988 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957993, + "TestTemperature" : 540.5176, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957992, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957992, + "TestMatchStateTime" : 1496941957991 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957994, + "TestTemperature" : 6267.906, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957993, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957993, + "TestMatchStateTime" : 1496941957992 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957994, + "TestTemperature" : 1053.8315, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957993, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957993, + "TestMatchStateTime" : 1496941957993 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957995, + "TestTemperature" : 1482.7478, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957994, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957994, + "TestMatchStateTime" : 1496941957993 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957995, + "TestTemperature" : 636.44586, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957995, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957994, + "TestMatchStateTime" : 1496941957994 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957996, + "TestTemperature" : 259.42923, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957996, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957995, + "TestMatchStateTime" : 1496941957995 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957997, + "TestTemperature" : 902.7964, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957996, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957996, + "TestMatchStateTime" : 1496941957995 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941957997, + "TestTemperature" : 6066.484, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957997, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941957996, + "TestMatchStateTime" : 1496941957996 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957998, + "TestTemperature" : 2918.8723, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957997, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957997, + "TestMatchStateTime" : 1496941957996 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941957999, + "TestTemperature" : 2603.0845, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957999, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957998, + "TestMatchStateTime" : 1496941957998 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941958000, + "TestTemperature" : 3989.0928, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941958000, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957999, + "TestMatchStateTime" : 1496941957999 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941958000, + "TestTemperature" : 4435.378, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957999, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957999, + "TestMatchStateTime" : 1496941957998 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941958002, + "TestTemperature" : 7657.731, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941958001, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941958001, + "TestMatchStateTime" : 1496941958000 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941958003, + "TestTemperature" : 6677.433, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941958002, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941958002, + "TestMatchStateTime" : 1496941958001 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941958000, + "TestTemperature" : 6470.262, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941957998, + "TestMatchCase" : 2, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941957998, + "TestMatchStateTime" : 1496941957997 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0004", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 3, + "TestActStateTime" : 1496941958004, + "TestTemperature" : 8723.999, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 2, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941958004, + "TestMatchCase" : 3, + "TestSlogan" : "Test slogan for External Event0", + "TestEstablishCaseSelected" : 0, + "TestEstablishStateTime" : 1496941958003, + "TestMatchStateTime" : 1496941958003 +} +{ + "nameSpace" : "org.onap.policy.apex.sample.events", + "name" : "Event0104", + "version" : "0.0.1", + "source" : "Act", + "target" : "Outside", + "TestActCaseSelected" : 2, + "TestActStateTime" : 1496941958004, + "TestTemperature" : 9456.176, + "TestDecideCaseSelected" : 1, + "TestMatchCaseSelected" : 1, + "TestTimestamp" : 1469781869271, + "TestDecideStateTime" : 1496941958004, + "TestMatchCase" : 0, + "TestSlogan" : "Test slogan for External Event1", + "TestEstablishCaseSelected" : 3, + "TestEstablishStateTime" : 1496941958003, + "TestMatchStateTime" : 1496941958002 +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/JMSTestModel.json b/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/JMSTestModel.json new file mode 100644 index 000000000..d85630456 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/JMSTestModel.json @@ -0,0 +1,456 @@ +{ + "apexPolicyModel": { + "key": { + "name": "JMSTestModel", + "version": "0.0.1" + }, + "keyInformation": { + "key": { + "name": "JMSTestModel_KeyInfo", + "version": "0.0.1" + }, + "keyInfoMap": { + "entry": [ + { + "key": { + "name": "JMSCopyInOutTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "JMSCopyInOutTask", + "version": "0.0.1" + }, + "UUID": "b59815ef-fc5b-4e44-9f6e-2f6212bb7296", + "description": "Generated description for a concept called \"JMSCopyInOutTask\" with version \"null\" and UUID \"b59815ef-fc5b-4e44-9f6e-2f6212bb7296\"" + } + }, + { + "key": { + "name": "JMSTestModel", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "JMSTestModel", + "version": "0.0.1" + }, + "UUID": "a731a845-f984-46a9-adf4-c6c7ca0baa0d", + "description": "Generated description for a concept called \"JMSTestModel\" with version \"null\" and UUID \"a731a845-f984-46a9-adf4-c6c7ca0baa0d\"" + } + }, + { + "key": { + "name": "JMSTestModel_Albums", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "JMSTestModel_Albums", + "version": "0.0.1" + }, + "UUID": "b580c2e2-067e-452c-8410-d69344fa718c", + "description": "Generated description for concept referred to by key \"JMSTestModel_Albums:0.0.1\"" + } + }, + { + "key": { + "name": "JMSTestModel_Events", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "JMSTestModel_Events", + "version": "0.0.1" + }, + "UUID": "463f3fa6-2be3-4ded-a015-1f045ee8991e", + "description": "Generated description for concept referred to by key \"JMSTestModel_Events:0.0.1\"" + } + }, + { + "key": { + "name": "JMSTestModel_KeyInfo", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "JMSTestModel_KeyInfo", + "version": "0.0.1" + }, + "UUID": "b14d97fb-f215-4b70-9cd6-cbfb3ed085ee", + "description": "Generated description for concept referred to by key \"JMSTestModel_KeyInfo:0.0.1\"" + } + }, + { + "key": { + "name": "JMSTestModel_Policies", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "JMSTestModel_Policies", + "version": "0.0.1" + }, + "UUID": "9ae9047f-e0d8-42c4-b3a6-e32954ace3b6", + "description": "Generated description for concept referred to by key \"JMSTestModel_Policies:0.0.1\"" + } + }, + { + "key": { + "name": "JMSTestModel_Schemas", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "JMSTestModel_Schemas", + "version": "0.0.1" + }, + "UUID": "adc30c29-d4b9-4408-9213-6d86b051d59c", + "description": "Generated description for concept referred to by key \"JMSTestModel_Schemas:0.0.1\"" + } + }, + { + "key": { + "name": "JMSTestModel_Tasks", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "JMSTestModel_Tasks", + "version": "0.0.1" + }, + "UUID": "c3545f15-710c-4339-9a4e-e0eacffac52e", + "description": "Generated description for concept referred to by key \"JMSTestModel_Tasks:0.0.1\"" + } + }, + { + "key": { + "name": "JMSTestPolicy", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "JMSTestPolicy", + "version": "0.0.1" + }, + "UUID": "fdda6a40-6767-45b0-8703-3b5b3bafaf19", + "description": "Generated description for a concept called \"JMSTestPolicy\" with version \"null\" and UUID \"fdda6a40-6767-45b0-8703-3b5b3bafaf19\"" + } + }, + { + "key": { + "name": "TestPingIncomingEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestPingIncomingEvent", + "version": "0.0.1" + }, + "UUID": "6cdd11f3-5fe8-4510-81b9-af3be303ebae", + "description": "Generated description for a concept called \"TestPingIncomingEvent\" with version \"null\" and UUID \"6cdd11f3-5fe8-4510-81b9-af3be303ebae\"" + } + }, + { + "key": { + "name": "TestPingOutgoingEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestPingOutgoingEvent", + "version": "0.0.1" + }, + "UUID": "dc04de01-2284-4461-9fe2-da58a2122a73", + "description": "Generated description for a concept called \"TestPingOutgoingEvent\" with version \"0.0.1\" and UUID \"dc04de01-2284-4461-9fe2-da58a2122a73\"" + } + }, + { + "key": { + "name": "TestPingType", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestPingType", + "version": "0.0.1" + }, + "UUID": "bdc2f70a-de52-4127-8012-b9593657da3c", + "description": "Generated description for a concept called \"TestPingType\" with version \"null\" and UUID \"bdc2f70a-de52-4127-8012-b9593657da3c\"" + } + } + ] + } + }, + "policies": { + "key": { + "name": "JMSTestModel_Policies", + "version": "0.0.1" + }, + "policyMap": { + "entry": [ + { + "key": { + "name": "JMSTestPolicy", + "version": "0.0.1" + }, + "value": { + "policyKey": { + "name": "JMSTestPolicy", + "version": "0.0.1" + }, + "template": "FREEFORM", + "state": { + "entry": [ + { + "key": "TestJMSState", + "value": { + "stateKey": { + "parentKeyName": "JMSTestPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "TestJMSState" + }, + "trigger": { + "name": "TestPingIncomingEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "InOutOutputMapping", + "value": { + "key": { + "parentKeyName": "JMSTestPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "TestJMSState", + "localName": "InOutOutputMapping" + }, + "outgoingEvent": { + "name": "TestPingOutgoingEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "NULL", + "parentKeyVersion": "0.0.0", + "parentLocalName": "NULL", + "localName": "NULL" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "JMSCopyInOutTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "JMSCopyInOutTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "JMSTestPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "TestJMSState", + "localName": "InOutTask" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "JMSTestPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "TestJMSState", + "localName": "InOutOutputMapping" + } + } + } + ] + } + } + } + ] + }, + "firstState": "TestJMSState" + } + } + ] + } + }, + "tasks": { + "key": { + "name": "JMSTestModel_Tasks", + "version": "0.0.1" + }, + "taskMap": { + "entry": [ + { + "key": { + "name": "JMSCopyInOutTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "JMSCopyInOutTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestPing", + "value": { + "key": "TestPing", + "fieldSchemaKey": { + "name": "TestPingType", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestPing", + "value": { + "key": "TestPing", + "fieldSchemaKey": { + "name": "TestPingType", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "JAVASCRIPT", + "logic": "var outFieldType = Java.type(\"org.onap.policy.apex.apps.uservice.test.adapt.jms.TestPing\");\nvar outValue = new outFieldType();\n\nvar inValue = executor.inFields.get(\"TestPing\");\n\nexecutor.logger.info(inValue);\n\noutValue.setPingTime(inValue.getPingTime());\noutValue.setPongTime(new Date().getTime());\noutValue.setName(inValue.getName() + \"_out\");\n\noutValue.setDescription(\ninValue.getDescription() +\n\". So Romeo would, were he not Romeo call'd,\" +\n\" retain that dear perfection which he owes, without that title.\");\n\nexecutor.logger.info(outValue);\nexecutor.outFields.put(\"TestPing\", outValue)\n\nvar returnValueType = Java.type(\"java.lang.Boolean\");\nvar returnValue = new returnValueType(true);" + } + } + } + ] + } + }, + "events": { + "key": { + "name": "JMSTestModel_Events", + "version": "0.0.1" + }, + "eventMap": { + "entry": [ + { + "key": { + "name": "TestPingIncomingEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestPingIncomingEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.apps.uservice.test.adapt.jms", + "source": "JMS", + "target": "Apex", + "parameter": { + "entry": [ + { + "key": "TestPing", + "value": { + "key": "TestPing", + "fieldSchemaKey": { + "name": "TestPingType", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "TestPingOutgoingEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestPingOutgoingEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.apps.uservice.test.adapt.jms", + "source": "Apex", + "target": "JMS", + "parameter": { + "entry": [ + { + "key": "TestPing", + "value": { + "key": "TestPing", + "fieldSchemaKey": { + "name": "TestPingType", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + } + ] + } + }, + "albums": { + "key": { + "name": "JMSTestModel_Albums", + "version": "0.0.1" + }, + "albums": { + "entry": [] + } + }, + "schemas": { + "key": { + "name": "JMSTestModel_Schemas", + "version": "0.0.1" + }, + "schemas": { + "entry": [ + { + "key": { + "name": "TestPingType", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestPingType", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.apps.uservice.test.adapt.jms.TestPing" + } + } + ] + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/SamplePolicyModelMVEL.json b/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/SamplePolicyModelMVEL.json new file mode 100644 index 000000000..982444f36 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/SamplePolicyModelMVEL.json @@ -0,0 +1,7036 @@ +{ + "apexPolicyModel": { + "key": { + "name": "SamplePolicyModelMVEL", + "version": "0.0.1" + }, + "keyInformation": { + "key": { + "name": "KeyInformation", + "version": "0.0.1" + }, + "keyInfoMap": { + "entry": [ + { + "key": { + "name": "Context", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Context", + "version": "0.0.1" + }, + "UUID": "2708db15-3117-4ef5-ae06-44ad4bc72756", + "description": "Generated description for concept referred to by key \"Context:0.0.1\"" + } + }, + { + "key": { + "name": "Event0000", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0000", + "version": "0.0.1" + }, + "UUID": "20f7f2d0-36e1-4134-93d9-8978e0ebb916", + "description": "Generated description for concept referred to by key \"Event0000:0.0.1\"" + } + }, + { + "key": { + "name": "Event0001", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0001", + "version": "0.0.1" + }, + "UUID": "bfa262fc-f59d-4b05-af44-a5b5c218b314", + "description": "Generated description for concept referred to by key \"Event0001:0.0.1\"" + } + }, + { + "key": { + "name": "Event0002", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0002", + "version": "0.0.1" + }, + "UUID": "84eeac88-5031-4487-b67a-5a3ae13c1a89", + "description": "Generated description for concept referred to by key \"Event0002:0.0.1\"" + } + }, + { + "key": { + "name": "Event0003", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0003", + "version": "0.0.1" + }, + "UUID": "7a46a411-1715-48d8-9e70-9b5d14bbbed4", + "description": "Generated description for concept referred to by key \"Event0003:0.0.1\"" + } + }, + { + "key": { + "name": "Event0004", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0004", + "version": "0.0.1" + }, + "UUID": "da0ba1b4-f654-4e99-97b5-595de84cb3dc", + "description": "Generated description for concept referred to by key \"Event0004:0.0.1\"" + } + }, + { + "key": { + "name": "Event0100", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0100", + "version": "0.0.1" + }, + "UUID": "1267b311-60e2-48a7-8d0e-23c4ea21d863", + "description": "Generated description for concept referred to by key \"Event0100:0.0.1\"" + } + }, + { + "key": { + "name": "Event0101", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0101", + "version": "0.0.1" + }, + "UUID": "84013070-ff2e-4295-acbd-4128f0509040", + "description": "Generated description for concept referred to by key \"Event0101:0.0.1\"" + } + }, + { + "key": { + "name": "Event0102", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0102", + "version": "0.0.1" + }, + "UUID": "6fb7761e-b86f-47fc-8e19-6a116600764e", + "description": "Generated description for concept referred to by key \"Event0102:0.0.1\"" + } + }, + { + "key": { + "name": "Event0103", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0103", + "version": "0.0.1" + }, + "UUID": "141cc707-009c-4e3b-a0f8-c346f074f590", + "description": "Generated description for concept referred to by key \"Event0103:0.0.1\"" + } + }, + { + "key": { + "name": "Event0104", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0104", + "version": "0.0.1" + }, + "UUID": "98f4d09f-ff73-4385-8876-df6d04b552cc", + "description": "Generated description for concept referred to by key \"Event0104:0.0.1\"" + } + }, + { + "key": { + "name": "Events", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Events", + "version": "0.0.1" + }, + "UUID": "889f6414-bc4d-4f29-b7af-175e63d23ac5", + "description": "Generated description for concept referred to by key \"Events:0.0.1\"" + } + }, + { + "key": { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + "UUID": "64e4911c-5aed-467f-be19-277fb6170857", + "description": "Generated description for concept referred to by key \"ExternalContextAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + "UUID": "cb6a1892-8c3c-44df-b8a7-0e5a333ff9eb", + "description": "Generated description for concept referred to by key \"GlobalContextAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "KeyInformation", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "KeyInformation", + "version": "0.0.1" + }, + "UUID": "f3126983-e26c-491f-8738-c57784ca4026", + "description": "Generated description for concept referred to by key \"KeyInformation:0.0.1\"" + } + }, + { + "key": { + "name": "Policies", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policies", + "version": "0.0.1" + }, + "UUID": "b20a18d5-c419-4e90-8519-9c8f8b3ce2ab", + "description": "Generated description for concept referred to by key \"Policies:0.0.1\"" + } + }, + { + "key": { + "name": "Policy0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policy0", + "version": "0.0.1" + }, + "UUID": "28943e99-871b-482b-953f-cfa7138da02c", + "description": "Generated description for concept referred to by key \"Policy0:0.0.1\"" + } + }, + { + "key": { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + "UUID": "2b1b738b-70f6-4b45-9d3c-a7e889b49993", + "description": "Generated description for concept referred to by key \"Policy0ContextAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "Policy1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policy1", + "version": "0.0.1" + }, + "UUID": "798ee6ea-f349-41bb-a281-7e4c22184e8c", + "description": "Generated description for concept referred to by key \"Policy1:0.0.1\"" + } + }, + { + "key": { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + }, + "UUID": "eb9568d5-d95f-4713-9622-d95ef4cf81c3", + "description": "Generated description for concept referred to by key \"Policy1ContextAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "SamplePolicyModelMVEL", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "SamplePolicyModelMVEL", + "version": "0.0.1" + }, + "UUID": "10979d21-947f-4920-83ae-63b827e8e80f", + "description": "Generated description for concept referred to by key \"SamplePolicyModelMVEL:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "UUID": "cb65d7fe-8d86-463c-aa16-0f4e6138d705", + "description": "Generated description for concept referred to by key \"Task_Act0:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "UUID": "ea2b4e7a-1a79-440c-9cf0-6fddaad64c0c", + "description": "Generated description for concept referred to by key \"Task_Act1:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Act2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act2", + "version": "0.0.1" + }, + "UUID": "269e1d08-9ab4-48b8-8854-b65deb9d41b1", + "description": "Generated description for concept referred to by key \"Task_Act2:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Act3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act3", + "version": "0.0.1" + }, + "UUID": "f9c4a91d-92aa-49ce-9b65-ab2378f6b048", + "description": "Generated description for concept referred to by key \"Task_Act3:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Decide0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide0", + "version": "0.0.1" + }, + "UUID": "7fde2446-ce2a-4bc2-a675-96496c387c88", + "description": "Generated description for concept referred to by key \"Task_Decide0:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Decide1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide1", + "version": "0.0.1" + }, + "UUID": "bc185db6-f18f-4fdd-b5b4-37d14b57f463", + "description": "Generated description for concept referred to by key \"Task_Decide1:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Decide2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide2", + "version": "0.0.1" + }, + "UUID": "2c1e2ede-d67c-4845-90ac-a4d53311bfbb", + "description": "Generated description for concept referred to by key \"Task_Decide2:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "UUID": "1d1645a2-2852-4296-9f22-8f31ebe5386a", + "description": "Generated description for concept referred to by key \"Task_Decide3:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Establish0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish0", + "version": "0.0.1" + }, + "UUID": "f3739d83-a029-4ad8-a0b9-e5a028b369b2", + "description": "Generated description for concept referred to by key \"Task_Establish0:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "UUID": "5351a5a5-4134-44fd-9a6f-fd37dbfc8aa7", + "description": "Generated description for concept referred to by key \"Task_Establish1:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "UUID": "4206bb68-e710-4a01-aade-3e34771da63b", + "description": "Generated description for concept referred to by key \"Task_Establish2:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Establish3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish3", + "version": "0.0.1" + }, + "UUID": "cbaab234-b586-4f63-986e-ed0b317b6c66", + "description": "Generated description for concept referred to by key \"Task_Establish3:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "UUID": "24dbc71b-8773-4393-9c36-a5f4991e0f55", + "description": "Generated description for concept referred to by key \"Task_Match0:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Match1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match1", + "version": "0.0.1" + }, + "UUID": "42ecd25d-e8cb-48e4-890a-b0616528cf10", + "description": "Generated description for concept referred to by key \"Task_Match1:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Match2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match2", + "version": "0.0.1" + }, + "UUID": "7e691294-a816-42f8-b124-9b5eac70b116", + "description": "Generated description for concept referred to by key \"Task_Match2:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "UUID": "bc7cad3c-85a5-40b4-9eda-51ac2387af05", + "description": "Generated description for concept referred to by key \"Task_Match3:0.0.1\"" + } + }, + { + "key": { + "name": "Tasks", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Tasks", + "version": "0.0.1" + }, + "UUID": "4386403d-b23c-4c3e-bc14-5d581f9de2f5", + "description": "Generated description for concept referred to by key \"Tasks:0.0.1\"" + } + }, + { + "key": { + "name": "TestCase", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestCase", + "version": "0.0.1" + }, + "UUID": "901a80ab-dd46-4697-b818-f669b9f9bce9", + "description": "Generated description for concept referred to by key \"TestCase:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem000", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem000", + "version": "0.0.1" + }, + "UUID": "cfd19e5d-ab54-4e54-b4e5-1c5eaa832622", + "description": "Generated description for concept referred to by key \"TestContextItem000:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem001", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem001", + "version": "0.0.1" + }, + "UUID": "42c27d27-878d-4e9d-a139-e60c98f1c747", + "description": "Generated description for concept referred to by key \"TestContextItem001:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem002", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem002", + "version": "0.0.1" + }, + "UUID": "83919fa0-ed4d-4981-908f-79913734a0f5", + "description": "Generated description for concept referred to by key \"TestContextItem002:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem003", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem003", + "version": "0.0.1" + }, + "UUID": "194882b0-d987-4200-b82a-2c015605279b", + "description": "Generated description for concept referred to by key \"TestContextItem003:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem004", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem004", + "version": "0.0.1" + }, + "UUID": "948d345b-39c3-4436-8036-ac9e5c561977", + "description": "Generated description for concept referred to by key \"TestContextItem004:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem005", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem005", + "version": "0.0.1" + }, + "UUID": "fdad8cb5-4375-4bbf-9ffc-1e5ed8f4bae6", + "description": "Generated description for concept referred to by key \"TestContextItem005:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem006", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem006", + "version": "0.0.1" + }, + "UUID": "5243c0ba-5c50-4835-a885-6cd988252bb7", + "description": "Generated description for concept referred to by key \"TestContextItem006:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem007", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem007", + "version": "0.0.1" + }, + "UUID": "29f0b15f-f7c3-46e5-98d7-59a34a677968", + "description": "Generated description for concept referred to by key \"TestContextItem007:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem008", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem008", + "version": "0.0.1" + }, + "UUID": "aac96de5-9f3c-452c-855f-e556cc807351", + "description": "Generated description for concept referred to by key \"TestContextItem008:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem009", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem009", + "version": "0.0.1" + }, + "UUID": "7fdc1cc3-08c7-42a4-92a9-39e172fe2f1f", + "description": "Generated description for concept referred to by key \"TestContextItem009:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem00A", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem00A", + "version": "0.0.1" + }, + "UUID": "cf60cca6-a2e8-4371-b0e5-85ecaae44acc", + "description": "Generated description for concept referred to by key \"TestContextItem00A:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem00B", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem00B", + "version": "0.0.1" + }, + "UUID": "1671f996-e14e-407d-a503-f4de09f0785b", + "description": "Generated description for concept referred to by key \"TestContextItem00B:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem00C", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem00C", + "version": "0.0.1" + }, + "UUID": "814c4c28-9027-4516-9598-adc75fafa92a", + "description": "Generated description for concept referred to by key \"TestContextItem00C:0.0.1\"" + } + }, + { + "key": { + "name": "TestDatatypes", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestDatatypes", + "version": "0.0.1" + }, + "UUID": "33e81d08-a62b-40ce-b7ff-50734427ebf9", + "description": "Generated description for concept referred to by key \"TestDatatypes:0.0.1\"" + } + }, + { + "key": { + "name": "TestExternalContextItem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestExternalContextItem", + "version": "0.0.1" + }, + "UUID": "5cd74351-8e27-4dee-a379-86124db50383", + "description": "Generated description for concept referred to by key \"TestExternalContextItem:0.0.1\"" + } + }, + { + "key": { + "name": "TestGlobalContextItem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestGlobalContextItem", + "version": "0.0.1" + }, + "UUID": "e8c9a056-5e95-4e14-bc96-0c0d13a34b18", + "description": "Generated description for concept referred to by key \"TestGlobalContextItem:0.0.1\"" + } + }, + { + "key": { + "name": "TestPolicyContextItem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestPolicyContextItem", + "version": "0.0.1" + }, + "UUID": "92489659-02f3-4cb2-b25f-a6234ad71d36", + "description": "Generated description for concept referred to by key \"TestPolicyContextItem:0.0.1\"" + } + }, + { + "key": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "UUID": "1c3b9345-32c2-4f7e-94ce-be36d0775e9e", + "description": "Generated description for concept referred to by key \"TestSlogan:0.0.1\"" + } + }, + { + "key": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "UUID": "9e719a99-1d73-4d40-b097-c9622b9ea2b4", + "description": "Generated description for concept referred to by key \"TestTemperature:0.0.1\"" + } + }, + { + "key": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "UUID": "3bcc8ef1-4cc5-4b7f-9dc4-83046d4a2a5d", + "description": "Generated description for concept referred to by key \"TestTimestamp:0.0.1\"" + } + } + ] + } + }, + "policies": { + "key": { + "name": "Policies", + "version": "0.0.1" + }, + "policyMap": { + "entry": [ + { + "key": { + "name": "Policy0", + "version": "0.0.1" + }, + "value": { + "policyKey": { + "name": "Policy0", + "version": "0.0.1" + }, + "template": "MEDA", + "state": { + "entry": [ + { + "key": "Act", + "value": { + "stateKey": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + }, + "trigger": { + "name": "Event0003", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Act_NULL", + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + }, + "outgoingEvent": { + "name": "Event0004", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "NULL", + "parentKeyVersion": "0.0.0", + "parentLocalName": "NULL", + "localName": "NULL" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act0_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + }, + { + "key": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act1_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + }, + { + "key": { + "name": "Task_Act2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act2_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + }, + { + "key": { + "name": "Task_Act3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act3_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + } + ] + } + } + }, + { + "key": "Decide", + "value": { + "stateKey": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + }, + "trigger": { + "name": "Event0002", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Decide_Act", + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + }, + "outgoingEvent": { + "name": "Event0003", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Decide0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide0_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "Task_Decide1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide1_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "Task_Decide2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide2_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide3_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + } + ] + } + } + }, + { + "key": "Establish", + "value": { + "stateKey": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + }, + "trigger": { + "name": "Event0001", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Establish_Decide", + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + }, + "outgoingEvent": { + "name": "Event0002", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Establish0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish0_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + }, + { + "key": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish1_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + }, + { + "key": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish2_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + }, + { + "key": { + "name": "Task_Establish3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish3_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + } + ] + } + } + }, + { + "key": "Match", + "value": { + "stateKey": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Match" + }, + "trigger": { + "name": "Event0000", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Match_Establish", + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + }, + "outgoingEvent": { + "name": "Event0001", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match0_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + }, + { + "key": { + "name": "Task_Match1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match1_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + }, + { + "key": { + "name": "Task_Match2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match2_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + }, + { + "key": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match3_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + } + ] + } + } + } + ] + }, + "firstState": "Match" + } + }, + { + "key": { + "name": "Policy1", + "version": "0.0.1" + }, + "value": { + "policyKey": { + "name": "Policy1", + "version": "0.0.1" + }, + "template": "MEDA", + "state": { + "entry": [ + { + "key": "Act", + "value": { + "stateKey": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + }, + "trigger": { + "name": "Event0103", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Act_NULL", + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + }, + "outgoingEvent": { + "name": "Event0104", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "NULL", + "parentKeyVersion": "0.0.0", + "parentLocalName": "NULL", + "localName": "NULL" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act0_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + }, + { + "key": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act1_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + }, + { + "key": { + "name": "Task_Act2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act2_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + }, + { + "key": { + "name": "Task_Act3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act3_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + } + ] + } + } + }, + { + "key": "Decide", + "value": { + "stateKey": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + }, + "trigger": { + "name": "Event0102", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Decide_Act", + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + }, + "outgoingEvent": { + "name": "Event0103", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Decide0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide0_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "Task_Decide1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide1_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "Task_Decide2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide2_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide3_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + } + ] + } + } + }, + { + "key": "Establish", + "value": { + "stateKey": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + }, + "trigger": { + "name": "Event0101", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Establish_Decide", + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + }, + "outgoingEvent": { + "name": "Event0102", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Establish0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish0_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + }, + { + "key": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish1_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + }, + { + "key": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish2_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + }, + { + "key": { + "name": "Task_Establish3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish3_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + } + ] + } + } + }, + { + "key": "Match", + "value": { + "stateKey": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Match" + }, + "trigger": { + "name": "Event0100", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Match_Establish", + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + }, + "outgoingEvent": { + "name": "Event0101", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match0_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + }, + { + "key": { + "name": "Task_Match1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match1_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + }, + { + "key": { + "name": "Task_Match2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match2_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + }, + { + "key": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match3_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + } + ] + } + } + } + ] + }, + "firstState": "Match" + } + } + ] + } + }, + "tasks": { + "key": { + "name": "Tasks", + "version": "0.0.1" + }, + "taskMap": { + "entry": [ + { + "key": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestActCaseSelected", + "value": { + "key": "TestActCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestActStateTime", + "value": { + "key": "TestActStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Act0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Act0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + }, + { + "key": "Parameter2", + "value": { + "key": { + "parentKeyName": "Task_Act0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter2" + }, + "defaultValue": "DefaultValue2" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestActCaseSelected\"] = (byte)2;\ntimeNow = new Date();\noutFields[\"TestActStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestActCaseSelected", + "value": { + "key": "TestActCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestActStateTime", + "value": { + "key": "TestActStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Act1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Act1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestActCaseSelected\"] = (byte)3;\ntimeNow = new Date();\noutFields[\"TestActStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Act2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act2", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestActCaseSelected", + "value": { + "key": "TestActCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestActStateTime", + "value": { + "key": "TestActStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Act2", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestActCaseSelected\"] = (byte)0;\ntimeNow = new Date();\noutFields[\"TestActStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Act3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act3", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestActCaseSelected", + "value": { + "key": "TestActCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestActStateTime", + "value": { + "key": "TestActStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Act3", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestActCaseSelected\"] = (byte)1;\ntimeNow = new Date();\noutFields[\"TestActStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Decide0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide0", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Decide0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Decide0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + }, + { + "key": "Parameter2", + "value": { + "key": { + "parentKeyName": "Task_Decide0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter2" + }, + "defaultValue": "DefaultValue2" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestDecideCaseSelected\"] = (byte)2;\ntimeNow = new Date();\noutFields[\"TestDecideStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Decide1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide1", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Decide1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Decide1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestDecideCaseSelected\"] = (byte)3;\ntimeNow = new Date();\noutFields[\"TestDecideStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Decide2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide2", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Decide2", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestDecideCaseSelected\"] = (byte)0;\ntimeNow = new Date();\noutFields[\"TestDecideStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Decide3", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestDecideCaseSelected\"] = (byte)1;\ntimeNow = new Date();\noutFields[\"TestDecideStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Establish0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish0", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Establish0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Establish0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + }, + { + "key": "Parameter2", + "value": { + "key": { + "parentKeyName": "Task_Establish0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter2" + }, + "defaultValue": "DefaultValue2" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestEstablishCaseSelected\"] = (byte)2;\ntimeNow = new Date();\noutFields[\"TestEstablishStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Establish1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Establish1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestEstablishCaseSelected\"] = (byte)3;\ntimeNow = new Date();\noutFields[\"TestEstablishStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Establish2", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestEstablishCaseSelected\"] = (byte)0;\ntimeNow = new Date();\noutFields[\"TestEstablishStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Establish3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish3", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Establish3", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestEstablishCaseSelected\"] = (byte)1;\ntimeNow = new Date();\noutFields[\"TestEstablishStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Match0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Match0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + }, + { + "key": "Parameter2", + "value": { + "key": { + "parentKeyName": "Task_Match0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter2" + }, + "defaultValue": "DefaultValue2" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestMatchCaseSelected\"] = (byte)2;\ntimeNow = new Date();\noutFields[\"TestMatchStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Match1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match1", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Match1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Match1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestMatchCaseSelected\"] = (byte)3;\ntimeNow = new Date();\noutFields[\"TestMatchStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Match2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match2", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Match2", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestMatchCaseSelected\"] = (byte)0;\ntimeNow = new Date();\noutFields[\"TestMatchStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Match3", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestMatchCaseSelected\"] = (byte)1;\ntimeNow = new Date();\noutFields[\"TestMatchStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + } + ] + } + }, + "events": { + "key": { + "name": "Events", + "version": "0.0.1" + }, + "eventMap": { + "entry": [ + { + "key": { + "name": "Event0000", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0000", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Outside", + "target": "Match", + "parameter": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + } + } + }, + { + "key": { + "name": "Event0001", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0001", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Match", + "target": "Establish", + "parameter": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + } + } + }, + { + "key": { + "name": "Event0002", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0002", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Establish", + "target": "Decide", + "parameter": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + } + } + }, + { + "key": { + "name": "Event0003", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0003", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Decide", + "target": "Act", + "parameter": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + } + } + }, + { + "key": { + "name": "Event0004", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0004", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Act", + "target": "Outside", + "parameter": { + "entry": [ + { + "key": "TestActCaseSelected", + "value": { + "key": "TestActCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestActStateTime", + "value": { + "key": "TestActStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + } + } + }, + { + "key": { + "name": "Event0100", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0100", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Outside", + "target": "Match", + "parameter": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + } + } + }, + { + "key": { + "name": "Event0101", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0101", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Match", + "target": "Establish", + "parameter": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + } + } + }, + { + "key": { + "name": "Event0102", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0102", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Establish", + "target": "Decide", + "parameter": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + } + } + }, + { + "key": { + "name": "Event0103", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0103", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Decide", + "target": "Act", + "parameter": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + } + } + }, + { + "key": { + "name": "Event0104", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0104", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Act", + "target": "Outside", + "parameter": { + "entry": [ + { + "key": "TestActCaseSelected", + "value": { + "key": "TestActCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestActStateTime", + "value": { + "key": "TestActStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + } + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + } + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + } + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + } + } + } + ] + } + } + } + ] + } + }, + "albums": { + "key": { + "name": "Context", + "version": "0.0.1" + }, + "albums": { + "entry": [ + { + "key": { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + "scope": "EXTERNAL", + "isWritable": false, + "itemSchema": { + "name": "TestExternalContextItem", + "version": "0.0.1" + } + } + }, + { + "key": { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + "scope": "GLOBAL", + "isWritable": true, + "itemSchema": { + "name": "TestGlobalContextItem", + "version": "0.0.1" + } + } + }, + { + "key": { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + "scope": "APPLICATION", + "isWritable": true, + "itemSchema": { + "name": "TestPolicyContextItem", + "version": "0.0.1" + } + } + }, + { + "key": { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + }, + "scope": "APPLICATION", + "isWritable": true, + "itemSchema": { + "name": "TestPolicyContextItem", + "version": "0.0.1" + } + } + } + ] + } + }, + "schemas": { + "key": { + "name": "TestDatatypes", + "version": "0.0.1" + }, + "schemas": { + "entry": [ + { + "key": { + "name": "TestCase", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestCase", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Byte" + } + }, + { + "key": { + "name": "TestContextItem000", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem000", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem000" + } + }, + { + "key": { + "name": "TestContextItem001", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem001", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem001" + } + }, + { + "key": { + "name": "TestContextItem002", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem002", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem002" + } + }, + { + "key": { + "name": "TestContextItem003", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem003", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem003" + } + }, + { + "key": { + "name": "TestContextItem004", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem004", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem004" + } + }, + { + "key": { + "name": "TestContextItem005", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem005", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem005" + } + }, + { + "key": { + "name": "TestContextItem006", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem006", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem006" + } + }, + { + "key": { + "name": "TestContextItem007", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem007", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem007" + } + }, + { + "key": { + "name": "TestContextItem008", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem008", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem008" + } + }, + { + "key": { + "name": "TestContextItem009", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem009", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem009" + } + }, + { + "key": { + "name": "TestContextItem00A", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem00A", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem00A" + } + }, + { + "key": { + "name": "TestContextItem00B", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem00B", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem00B" + } + }, + { + "key": { + "name": "TestContextItem00C", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem00C", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem00C" + } + }, + { + "key": { + "name": "TestExternalContextItem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestExternalContextItem", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestExternalContextItem" + } + }, + { + "key": { + "name": "TestGlobalContextItem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestGlobalContextItem", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestGlobalContextItem" + } + }, + { + "key": { + "name": "TestPolicyContextItem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestPolicyContextItem", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestPolicyContextItem" + } + }, + { + "key": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Double" + } + }, + { + "key": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Long" + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/SamplePolicyModelMVELDivideByZero.json b/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/SamplePolicyModelMVELDivideByZero.json new file mode 100644 index 000000000..50c426682 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/SamplePolicyModelMVELDivideByZero.json @@ -0,0 +1,7372 @@ +{ + "apexPolicyModel": { + "key": { + "name": "SamplePolicyModelMVEL", + "version": "0.0.1" + }, + "keyInformation": { + "key": { + "name": "KeyInformation", + "version": "0.0.1" + }, + "keyInfoMap": { + "entry": [ + { + "key": { + "name": "Context", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Context", + "version": "0.0.1" + }, + "UUID": "2708db15-3117-4ef5-ae06-44ad4bc72756", + "description": "Generated description for concept referred to by key \"Context:0.0.1\"" + } + }, + { + "key": { + "name": "Event0000", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0000", + "version": "0.0.1" + }, + "UUID": "20f7f2d0-36e1-4134-93d9-8978e0ebb916", + "description": "Generated description for concept referred to by key \"Event0000:0.0.1\"" + } + }, + { + "key": { + "name": "Event0001", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0001", + "version": "0.0.1" + }, + "UUID": "bfa262fc-f59d-4b05-af44-a5b5c218b314", + "description": "Generated description for concept referred to by key \"Event0001:0.0.1\"" + } + }, + { + "key": { + "name": "Event0002", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0002", + "version": "0.0.1" + }, + "UUID": "84eeac88-5031-4487-b67a-5a3ae13c1a89", + "description": "Generated description for concept referred to by key \"Event0002:0.0.1\"" + } + }, + { + "key": { + "name": "Event0003", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0003", + "version": "0.0.1" + }, + "UUID": "7a46a411-1715-48d8-9e70-9b5d14bbbed4", + "description": "Generated description for concept referred to by key \"Event0003:0.0.1\"" + } + }, + { + "key": { + "name": "Event0004", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0004", + "version": "0.0.1" + }, + "UUID": "da0ba1b4-f654-4e99-97b5-595de84cb3dc", + "description": "Generated description for concept referred to by key \"Event0004:0.0.1\"" + } + }, + { + "key": { + "name": "Event0100", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0100", + "version": "0.0.1" + }, + "UUID": "1267b311-60e2-48a7-8d0e-23c4ea21d863", + "description": "Generated description for concept referred to by key \"Event0100:0.0.1\"" + } + }, + { + "key": { + "name": "Event0101", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0101", + "version": "0.0.1" + }, + "UUID": "84013070-ff2e-4295-acbd-4128f0509040", + "description": "Generated description for concept referred to by key \"Event0101:0.0.1\"" + } + }, + { + "key": { + "name": "Event0102", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0102", + "version": "0.0.1" + }, + "UUID": "6fb7761e-b86f-47fc-8e19-6a116600764e", + "description": "Generated description for concept referred to by key \"Event0102:0.0.1\"" + } + }, + { + "key": { + "name": "Event0103", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0103", + "version": "0.0.1" + }, + "UUID": "141cc707-009c-4e3b-a0f8-c346f074f590", + "description": "Generated description for concept referred to by key \"Event0103:0.0.1\"" + } + }, + { + "key": { + "name": "Event0104", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0104", + "version": "0.0.1" + }, + "UUID": "98f4d09f-ff73-4385-8876-df6d04b552cc", + "description": "Generated description for concept referred to by key \"Event0104:0.0.1\"" + } + }, + { + "key": { + "name": "Events", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Events", + "version": "0.0.1" + }, + "UUID": "889f6414-bc4d-4f29-b7af-175e63d23ac5", + "description": "Generated description for concept referred to by key \"Events:0.0.1\"" + } + }, + { + "key": { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + "UUID": "64e4911c-5aed-467f-be19-277fb6170857", + "description": "Generated description for concept referred to by key \"ExternalContextAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + "UUID": "cb6a1892-8c3c-44df-b8a7-0e5a333ff9eb", + "description": "Generated description for concept referred to by key \"GlobalContextAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "KeyInformation", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "KeyInformation", + "version": "0.0.1" + }, + "UUID": "f3126983-e26c-491f-8738-c57784ca4026", + "description": "Generated description for concept referred to by key \"KeyInformation:0.0.1\"" + } + }, + { + "key": { + "name": "Policies", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policies", + "version": "0.0.1" + }, + "UUID": "b20a18d5-c419-4e90-8519-9c8f8b3ce2ab", + "description": "Generated description for concept referred to by key \"Policies:0.0.1\"" + } + }, + { + "key": { + "name": "Policy0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policy0", + "version": "0.0.1" + }, + "UUID": "28943e99-871b-482b-953f-cfa7138da02c", + "description": "Generated description for concept referred to by key \"Policy0:0.0.1\"" + } + }, + { + "key": { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + "UUID": "2b1b738b-70f6-4b45-9d3c-a7e889b49993", + "description": "Generated description for concept referred to by key \"Policy0ContextAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "Policy1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policy1", + "version": "0.0.1" + }, + "UUID": "798ee6ea-f349-41bb-a281-7e4c22184e8c", + "description": "Generated description for concept referred to by key \"Policy1:0.0.1\"" + } + }, + { + "key": { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + }, + "UUID": "eb9568d5-d95f-4713-9622-d95ef4cf81c3", + "description": "Generated description for concept referred to by key \"Policy1ContextAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "SamplePolicyModelMVEL", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "SamplePolicyModelMVEL", + "version": "0.0.1" + }, + "UUID": "10979d21-947f-4920-83ae-63b827e8e80f", + "description": "Generated description for concept referred to by key \"SamplePolicyModelMVEL:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "UUID": "cb65d7fe-8d86-463c-aa16-0f4e6138d705", + "description": "Generated description for concept referred to by key \"Task_Act0:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "UUID": "ea2b4e7a-1a79-440c-9cf0-6fddaad64c0c", + "description": "Generated description for concept referred to by key \"Task_Act1:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Act2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act2", + "version": "0.0.1" + }, + "UUID": "269e1d08-9ab4-48b8-8854-b65deb9d41b1", + "description": "Generated description for concept referred to by key \"Task_Act2:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Act3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act3", + "version": "0.0.1" + }, + "UUID": "f9c4a91d-92aa-49ce-9b65-ab2378f6b048", + "description": "Generated description for concept referred to by key \"Task_Act3:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Decide0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide0", + "version": "0.0.1" + }, + "UUID": "7fde2446-ce2a-4bc2-a675-96496c387c88", + "description": "Generated description for concept referred to by key \"Task_Decide0:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Decide1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide1", + "version": "0.0.1" + }, + "UUID": "bc185db6-f18f-4fdd-b5b4-37d14b57f463", + "description": "Generated description for concept referred to by key \"Task_Decide1:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Decide2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide2", + "version": "0.0.1" + }, + "UUID": "2c1e2ede-d67c-4845-90ac-a4d53311bfbb", + "description": "Generated description for concept referred to by key \"Task_Decide2:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "UUID": "1d1645a2-2852-4296-9f22-8f31ebe5386a", + "description": "Generated description for concept referred to by key \"Task_Decide3:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Establish0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish0", + "version": "0.0.1" + }, + "UUID": "f3739d83-a029-4ad8-a0b9-e5a028b369b2", + "description": "Generated description for concept referred to by key \"Task_Establish0:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "UUID": "5351a5a5-4134-44fd-9a6f-fd37dbfc8aa7", + "description": "Generated description for concept referred to by key \"Task_Establish1:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "UUID": "4206bb68-e710-4a01-aade-3e34771da63b", + "description": "Generated description for concept referred to by key \"Task_Establish2:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Establish3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish3", + "version": "0.0.1" + }, + "UUID": "cbaab234-b586-4f63-986e-ed0b317b6c66", + "description": "Generated description for concept referred to by key \"Task_Establish3:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "UUID": "24dbc71b-8773-4393-9c36-a5f4991e0f55", + "description": "Generated description for concept referred to by key \"Task_Match0:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Match1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match1", + "version": "0.0.1" + }, + "UUID": "42ecd25d-e8cb-48e4-890a-b0616528cf10", + "description": "Generated description for concept referred to by key \"Task_Match1:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Match2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match2", + "version": "0.0.1" + }, + "UUID": "7e691294-a816-42f8-b124-9b5eac70b116", + "description": "Generated description for concept referred to by key \"Task_Match2:0.0.1\"" + } + }, + { + "key": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "UUID": "bc7cad3c-85a5-40b4-9eda-51ac2387af05", + "description": "Generated description for concept referred to by key \"Task_Match3:0.0.1\"" + } + }, + { + "key": { + "name": "Tasks", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Tasks", + "version": "0.0.1" + }, + "UUID": "4386403d-b23c-4c3e-bc14-5d581f9de2f5", + "description": "Generated description for concept referred to by key \"Tasks:0.0.1\"" + } + }, + { + "key": { + "name": "TestCase", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestCase", + "version": "0.0.1" + }, + "UUID": "901a80ab-dd46-4697-b818-f669b9f9bce9", + "description": "Generated description for concept referred to by key \"TestCase:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem000", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem000", + "version": "0.0.1" + }, + "UUID": "cfd19e5d-ab54-4e54-b4e5-1c5eaa832622", + "description": "Generated description for concept referred to by key \"TestContextItem000:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem001", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem001", + "version": "0.0.1" + }, + "UUID": "42c27d27-878d-4e9d-a139-e60c98f1c747", + "description": "Generated description for concept referred to by key \"TestContextItem001:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem002", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem002", + "version": "0.0.1" + }, + "UUID": "83919fa0-ed4d-4981-908f-79913734a0f5", + "description": "Generated description for concept referred to by key \"TestContextItem002:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem003", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem003", + "version": "0.0.1" + }, + "UUID": "194882b0-d987-4200-b82a-2c015605279b", + "description": "Generated description for concept referred to by key \"TestContextItem003:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem004", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem004", + "version": "0.0.1" + }, + "UUID": "948d345b-39c3-4436-8036-ac9e5c561977", + "description": "Generated description for concept referred to by key \"TestContextItem004:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem005", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem005", + "version": "0.0.1" + }, + "UUID": "fdad8cb5-4375-4bbf-9ffc-1e5ed8f4bae6", + "description": "Generated description for concept referred to by key \"TestContextItem005:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem006", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem006", + "version": "0.0.1" + }, + "UUID": "5243c0ba-5c50-4835-a885-6cd988252bb7", + "description": "Generated description for concept referred to by key \"TestContextItem006:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem007", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem007", + "version": "0.0.1" + }, + "UUID": "29f0b15f-f7c3-46e5-98d7-59a34a677968", + "description": "Generated description for concept referred to by key \"TestContextItem007:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem008", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem008", + "version": "0.0.1" + }, + "UUID": "aac96de5-9f3c-452c-855f-e556cc807351", + "description": "Generated description for concept referred to by key \"TestContextItem008:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem009", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem009", + "version": "0.0.1" + }, + "UUID": "7fdc1cc3-08c7-42a4-92a9-39e172fe2f1f", + "description": "Generated description for concept referred to by key \"TestContextItem009:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem00A", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem00A", + "version": "0.0.1" + }, + "UUID": "cf60cca6-a2e8-4371-b0e5-85ecaae44acc", + "description": "Generated description for concept referred to by key \"TestContextItem00A:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem00B", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem00B", + "version": "0.0.1" + }, + "UUID": "1671f996-e14e-407d-a503-f4de09f0785b", + "description": "Generated description for concept referred to by key \"TestContextItem00B:0.0.1\"" + } + }, + { + "key": { + "name": "TestContextItem00C", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem00C", + "version": "0.0.1" + }, + "UUID": "814c4c28-9027-4516-9598-adc75fafa92a", + "description": "Generated description for concept referred to by key \"TestContextItem00C:0.0.1\"" + } + }, + { + "key": { + "name": "TestDatatypes", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestDatatypes", + "version": "0.0.1" + }, + "UUID": "33e81d08-a62b-40ce-b7ff-50734427ebf9", + "description": "Generated description for concept referred to by key \"TestDatatypes:0.0.1\"" + } + }, + { + "key": { + "name": "TestExternalContextItem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestExternalContextItem", + "version": "0.0.1" + }, + "UUID": "5cd74351-8e27-4dee-a379-86124db50383", + "description": "Generated description for concept referred to by key \"TestExternalContextItem:0.0.1\"" + } + }, + { + "key": { + "name": "TestGlobalContextItem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestGlobalContextItem", + "version": "0.0.1" + }, + "UUID": "e8c9a056-5e95-4e14-bc96-0c0d13a34b18", + "description": "Generated description for concept referred to by key \"TestGlobalContextItem:0.0.1\"" + } + }, + { + "key": { + "name": "TestPolicyContextItem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestPolicyContextItem", + "version": "0.0.1" + }, + "UUID": "92489659-02f3-4cb2-b25f-a6234ad71d36", + "description": "Generated description for concept referred to by key \"TestPolicyContextItem:0.0.1\"" + } + }, + { + "key": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "UUID": "1c3b9345-32c2-4f7e-94ce-be36d0775e9e", + "description": "Generated description for concept referred to by key \"TestSlogan:0.0.1\"" + } + }, + { + "key": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "UUID": "9e719a99-1d73-4d40-b097-c9622b9ea2b4", + "description": "Generated description for concept referred to by key \"TestTemperature:0.0.1\"" + } + }, + { + "key": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "UUID": "3bcc8ef1-4cc5-4b7f-9dc4-83046d4a2a5d", + "description": "Generated description for concept referred to by key \"TestTimestamp:0.0.1\"" + } + } + ] + } + }, + "policies": { + "key": { + "name": "Policies", + "version": "0.0.1" + }, + "policyMap": { + "entry": [ + { + "key": { + "name": "Policy0", + "version": "0.0.1" + }, + "value": { + "policyKey": { + "name": "Policy0", + "version": "0.0.1" + }, + "template": "MEDA", + "state": { + "entry": [ + { + "key": "Act", + "value": { + "stateKey": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + }, + "trigger": { + "name": "Event0003", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Act_NULL", + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + }, + "outgoingEvent": { + "name": "Event0004", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "NULL", + "parentKeyVersion": "0.0.0", + "parentLocalName": "NULL", + "localName": "NULL" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act0_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + }, + { + "key": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act1_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + }, + { + "key": { + "name": "Task_Act2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act2_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + }, + { + "key": { + "name": "Task_Act3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act3_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + } + ] + } + } + }, + { + "key": "Decide", + "value": { + "stateKey": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + }, + "trigger": { + "name": "Event0002", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Decide_Act", + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + }, + "outgoingEvent": { + "name": "Event0003", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Decide0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide0_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "Task_Decide1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide1_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "Task_Decide2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide2_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide3_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + } + ] + } + } + }, + { + "key": "Establish", + "value": { + "stateKey": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + }, + "trigger": { + "name": "Event0001", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Establish_Decide", + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + }, + "outgoingEvent": { + "name": "Event0002", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Establish0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish0_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + }, + { + "key": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish1_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + }, + { + "key": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish2_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + }, + { + "key": { + "name": "Task_Establish3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish3_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + } + ] + } + } + }, + { + "key": "Match", + "value": { + "stateKey": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Match" + }, + "trigger": { + "name": "Event0000", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Match_Establish", + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + }, + "outgoingEvent": { + "name": "Event0001", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match0_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + }, + { + "key": { + "name": "Task_Match1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match1_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + }, + { + "key": { + "name": "Task_Match2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match2_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + }, + { + "key": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match3_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + } + ] + } + } + } + ] + }, + "firstState": "Match" + } + }, + { + "key": { + "name": "Policy1", + "version": "0.0.1" + }, + "value": { + "policyKey": { + "name": "Policy1", + "version": "0.0.1" + }, + "template": "MEDA", + "state": { + "entry": [ + { + "key": "Act", + "value": { + "stateKey": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + }, + "trigger": { + "name": "Event0103", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Act_NULL", + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + }, + "outgoingEvent": { + "name": "Event0104", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "NULL", + "parentKeyVersion": "0.0.0", + "parentLocalName": "NULL", + "localName": "NULL" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act0_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + }, + { + "key": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act1_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + }, + { + "key": { + "name": "Task_Act2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act2_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + }, + { + "key": { + "name": "Task_Act3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Task_Act3_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + } + ] + } + } + }, + { + "key": "Decide", + "value": { + "stateKey": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + }, + "trigger": { + "name": "Event0102", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Decide_Act", + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + }, + "outgoingEvent": { + "name": "Event0103", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Decide0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide0_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "Task_Decide1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide1_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "Task_Decide2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide2_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Task_Decide3_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + } + ] + } + } + }, + { + "key": "Establish", + "value": { + "stateKey": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + }, + "trigger": { + "name": "Event0101", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Establish_Decide", + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + }, + "outgoingEvent": { + "name": "Event0102", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Establish0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish0_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + }, + { + "key": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish1_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + }, + { + "key": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish2_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + }, + { + "key": { + "name": "Task_Establish3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Task_Establish3_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + } + ] + } + } + }, + { + "key": "Match", + "value": { + "stateKey": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Match" + }, + "trigger": { + "name": "Event0100", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Match_Establish", + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + }, + "outgoingEvent": { + "name": "Event0101", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + } + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskSelectionLogic": { + "key": "TaskSelectionLigic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match0_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + }, + { + "key": { + "name": "Task_Match1", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match1_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + }, + { + "key": { + "name": "Task_Match2", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match2_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + }, + { + "key": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Task_Match3_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "Policy1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + } + ] + } + } + } + ] + }, + "firstState": "Match" + } + } + ] + } + }, + "tasks": { + "key": { + "name": "Tasks", + "version": "0.0.1" + }, + "taskMap": { + "entry": [ + { + "key": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act0", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestActCaseSelected", + "value": { + "key": "TestActCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestActStateTime", + "value": { + "key": "TestActStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Act0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Act0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + }, + { + "key": "Parameter2", + "value": { + "key": { + "parentKeyName": "Task_Act0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter2" + }, + "defaultValue": "DefaultValue2" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestActCaseSelected\"] = (byte)2;\ntimeNow = new Date();\ndivZero = 10;\ndivZero = divZero /0;\noutFields[\"TestActStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act1", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestActCaseSelected", + "value": { + "key": "TestActCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestActStateTime", + "value": { + "key": "TestActStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Act1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Act1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestActCaseSelected\"] = (byte)3;\ntimeNow = new Date();\ndivZero = 10;\ndivZero = divZero /0;\noutFields[\"TestActStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Act2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act2", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestActCaseSelected", + "value": { + "key": "TestActCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestActStateTime", + "value": { + "key": "TestActStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Act2", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestActCaseSelected\"] = (byte)0;\ntimeNow = new Date();\ndivZero = 10;\ndivZero = divZero /0;\noutFields[\"TestActStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Act3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Act3", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestActCaseSelected", + "value": { + "key": "TestActCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestActStateTime", + "value": { + "key": "TestActStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Act3", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestActCaseSelected\"] = (byte)1;\ntimeNow = new Date();\ndivZero = 10;\ndivZero = divZero /0;\noutFields[\"TestActStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Decide0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide0", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Decide0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Decide0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + }, + { + "key": "Parameter2", + "value": { + "key": { + "parentKeyName": "Task_Decide0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter2" + }, + "defaultValue": "DefaultValue2" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestDecideCaseSelected\"] = (byte)2;\ntimeNow = new Date();\noutFields[\"TestDecideStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Decide1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide1", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Decide1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Decide1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestDecideCaseSelected\"] = (byte)3;\ntimeNow = new Date();\noutFields[\"TestDecideStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Decide2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide2", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Decide2", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestDecideCaseSelected\"] = (byte)0;\ntimeNow = new Date();\noutFields[\"TestDecideStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Decide3", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Decide3", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestDecideCaseSelected\"] = (byte)1;\ntimeNow = new Date();\noutFields[\"TestDecideStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Establish0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish0", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Establish0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Establish0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + }, + { + "key": "Parameter2", + "value": { + "key": { + "parentKeyName": "Task_Establish0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter2" + }, + "defaultValue": "DefaultValue2" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestEstablishCaseSelected\"] = (byte)2;\ntimeNow = new Date();\noutFields[\"TestEstablishStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish1", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Establish1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Establish1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestEstablishCaseSelected\"] = (byte)3;\ntimeNow = new Date();\noutFields[\"TestEstablishStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish2", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Establish2", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestEstablishCaseSelected\"] = (byte)0;\ntimeNow = new Date();\noutFields[\"TestEstablishStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Establish3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Establish3", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Establish3", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestEstablishCaseSelected\"] = (byte)1;\ntimeNow = new Date();\noutFields[\"TestEstablishStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match0", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Match0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Match0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + }, + { + "key": "Parameter2", + "value": { + "key": { + "parentKeyName": "Task_Match0", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter2" + }, + "defaultValue": "DefaultValue2" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestMatchCaseSelected\"] = (byte)2;\ntimeNow = new Date();\noutFields[\"TestMatchStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Match1", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match1", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Match1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + }, + { + "key": "Parameter1", + "value": { + "key": { + "parentKeyName": "Task_Match1", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter1" + }, + "defaultValue": "DefaultValue1" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestMatchCaseSelected\"] = (byte)3;\ntimeNow = new Date();\noutFields[\"TestMatchStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Match2", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match2", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Match2", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestMatchCaseSelected\"] = (byte)0;\ntimeNow = new Date();\noutFields[\"TestMatchStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Task_Match3", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [ + { + "key": "Parameter0", + "value": { + "key": { + "parentKeyName": "Task_Match3", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Parameter0" + }, + "defaultValue": "DefaultValue0" + } + } + ] + }, + "contextAlbumReference": [ + { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + { + "name": "GlobalContextAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "_TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.Date;\nlogger.debug(subject.id);\ngc = getContextAlbum(\"GlobalContextAlbum\");\nlogger.debug(gc);\nlogger.debug(inFields);\noutFields[\"TestMatchCaseSelected\"] = (byte)1;\ntimeNow = new Date();\noutFields[\"TestMatchStateTime\"] = timeNow.getTime();\nlogger.debug(outFields);\nreturn true;" + } + } + } + ] + } + }, + "events": { + "key": { + "name": "Events", + "version": "0.0.1" + }, + "eventMap": { + "entry": [ + { + "key": { + "name": "Event0000", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0000", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Outside", + "target": "Match", + "parameter": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "Event0001", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0001", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Match", + "target": "Establish", + "parameter": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "Event0002", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0002", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Establish", + "target": "Decide", + "parameter": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "Event0003", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0003", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Decide", + "target": "Act", + "parameter": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "Event0004", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0004", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Act", + "target": "Outside", + "parameter": { + "entry": [ + { + "key": "TestActCaseSelected", + "value": { + "key": "TestActCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestActStateTime", + "value": { + "key": "TestActStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "Event0100", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0100", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Outside", + "target": "Match", + "parameter": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "Event0101", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0101", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Match", + "target": "Establish", + "parameter": { + "entry": [ + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "Event0102", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0102", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Establish", + "target": "Decide", + "parameter": { + "entry": [ + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "Event0103", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0103", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Decide", + "target": "Act", + "parameter": { + "entry": [ + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "Event0104", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Event0104", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.sample.events", + "source": "Act", + "target": "Outside", + "parameter": { + "entry": [ + { + "key": "TestActCaseSelected", + "value": { + "key": "TestActCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestActStateTime", + "value": { + "key": "TestActStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideCaseSelected", + "value": { + "key": "TestDecideCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestDecideStateTime", + "value": { + "key": "TestDecideStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishCaseSelected", + "value": { + "key": "TestEstablishCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestEstablishStateTime", + "value": { + "key": "TestEstablishStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCase", + "value": { + "key": "TestMatchCase", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchCaseSelected", + "value": { + "key": "TestMatchCaseSelected", + "fieldSchemaKey": { + "name": "TestCase", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestMatchStateTime", + "value": { + "key": "TestMatchStateTime", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestSlogan", + "value": { + "key": "TestSlogan", + "fieldSchemaKey": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTemperature", + "value": { + "key": "TestTemperature", + "fieldSchemaKey": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "TestTimestamp", + "value": { + "key": "TestTimestamp", + "fieldSchemaKey": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + } + ] + } + }, + "albums": { + "key": { + "name": "Context", + "version": "0.0.1" + }, + "albums": { + "entry": [ + { + "key": { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "ExternalContextAlbum", + "version": "0.0.1" + }, + "scope": "EXTERNAL", + "isWritable": false, + "itemSchema": { + "name": "TestExternalContextItem", + "version": "0.0.1" + } + } + }, + { + "key": { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "GlobalContextAlbum", + "version": "0.0.1" + }, + "scope": "GLOBAL", + "isWritable": true, + "itemSchema": { + "name": "TestGlobalContextItem", + "version": "0.0.1" + } + } + }, + { + "key": { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policy0ContextAlbum", + "version": "0.0.1" + }, + "scope": "APPLICATION", + "isWritable": true, + "itemSchema": { + "name": "TestPolicyContextItem", + "version": "0.0.1" + } + } + }, + { + "key": { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Policy1ContextAlbum", + "version": "0.0.1" + }, + "scope": "APPLICATION", + "isWritable": true, + "itemSchema": { + "name": "TestPolicyContextItem", + "version": "0.0.1" + } + } + } + ] + } + }, + "schemas": { + "key": { + "name": "TestDatatypes", + "version": "0.0.1" + }, + "schemas": { + "entry": [ + { + "key": { + "name": "TestCase", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestCase", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Byte" + } + }, + { + "key": { + "name": "TestContextItem000", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem000", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem000" + } + }, + { + "key": { + "name": "TestContextItem001", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem001", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem001" + } + }, + { + "key": { + "name": "TestContextItem002", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem002", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem002" + } + }, + { + "key": { + "name": "TestContextItem003", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem003", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem003" + } + }, + { + "key": { + "name": "TestContextItem004", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem004", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem004" + } + }, + { + "key": { + "name": "TestContextItem005", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem005", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem005" + } + }, + { + "key": { + "name": "TestContextItem006", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem006", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem006" + } + }, + { + "key": { + "name": "TestContextItem007", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem007", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem007" + } + }, + { + "key": { + "name": "TestContextItem008", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem008", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem008" + } + }, + { + "key": { + "name": "TestContextItem009", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem009", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem009" + } + }, + { + "key": { + "name": "TestContextItem00A", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem00A", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem00A" + } + }, + { + "key": { + "name": "TestContextItem00B", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem00B", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem00B" + } + }, + { + "key": { + "name": "TestContextItem00C", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestContextItem00C", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestContextItem00C" + } + }, + { + "key": { + "name": "TestExternalContextItem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestExternalContextItem", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestExternalContextItem" + } + }, + { + "key": { + "name": "TestGlobalContextItem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestGlobalContextItem", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestGlobalContextItem" + } + }, + { + "key": { + "name": "TestPolicyContextItem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestPolicyContextItem", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.context.test.concepts.TestPolicyContextItem" + } + }, + { + "key": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestSlogan", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestTemperature", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Double" + } + }, + { + "key": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "TestTimestamp", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Long" + } + } + ] + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/VPNPolicyModelAvro.json b/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/VPNPolicyModelAvro.json new file mode 100644 index 000000000..5fa4be403 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/VPNPolicyModelAvro.json @@ -0,0 +1,4557 @@ +{ + "apexPolicyModel": { + "key": { + "name": "VPNPolicyModelAvro", + "version": "0.0.1" + }, + "keyInformation": { + "key": { + "name": "VPNKeyInformation", + "version": "0.0.1" + }, + "keyInfoMap": { + "entry": [ + { + "key": { + "name": "Action", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Action", + "version": "0.0.1" + }, + "UUID": "fecbf45a-8559-3ba8-be95-c773d8277912", + "description": "Generated description for concept referred to by key \"Action:0.0.1\"" + } + }, + { + "key": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "UUID": "a076b82b-2843-310c-b6a5-a89da296caf7", + "description": "Generated description for concept referred to by key \"AffectedCustomers:0.0.1\"" + } + }, + { + "key": { + "name": "CustomerMap", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "CustomerMap", + "version": "0.0.1" + }, + "UUID": "cc403e79-bf85-3bdc-83dc-86a1ff45abed", + "description": "Generated description for concept referred to by key \"CustomerMap:0.0.1\"" + } + }, + { + "key": { + "name": "CustomerName", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "CustomerName", + "version": "0.0.1" + }, + "UUID": "638a87b0-2040-3ab7-8d1f-3877f6efb250", + "description": "Generated description for concept referred to by key \"CustomerName:0.0.1\"" + } + }, + { + "key": { + "name": "Link", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Link", + "version": "0.0.1" + }, + "UUID": "0e3b3a57-fa0a-3b0d-ad18-0322d1a515f0", + "description": "Generated description for concept referred to by key \"Link:0.0.1\"" + } + }, + { + "key": { + "name": "LinkList", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "LinkList", + "version": "0.0.1" + }, + "UUID": "ec38833a-7f3e-3733-b38b-eb7ecc9e60ca", + "description": "Generated description for concept referred to by key \"LinkList:0.0.1\"" + } + }, + { + "key": { + "name": "LinkMap", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "LinkMap", + "version": "0.0.1" + }, + "UUID": "5eceb73f-c951-360a-afb4-ca7a5376f8a9", + "description": "Generated description for concept referred to by key \"LinkMap:0.0.1\"" + } + }, + { + "key": { + "name": "LinkUp", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "LinkUp", + "version": "0.0.1" + }, + "UUID": "2b9935ab-9b97-3228-ba43-ae48d7743c9f", + "description": "Generated description for concept referred to by key \"LinkUp:0.0.1\"" + } + }, + { + "key": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "UUID": "b26602d0-53cb-357c-aa3a-bd53325c7208", + "description": "Generated description for concept referred to by key \"ProblemStatus:0.0.1\"" + } + }, + { + "key": { + "name": "SlaDT", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "SlaDT", + "version": "0.0.1" + }, + "UUID": "c8a76dcf-d322-3a01-9d4b-c2d9a01359aa", + "description": "Generated description for concept referred to by key \"SlaDT:0.0.1\"" + } + }, + { + "key": { + "name": "Status", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Status", + "version": "0.0.1" + }, + "UUID": "32a032cd-923a-3578-a232-d3ce88434b45", + "description": "Generated description for concept referred to by key \"Status:0.0.1\"" + } + }, + { + "key": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "UUID": "af0da9d9-a2bd-387c-a441-66a0b0a0f434", + "description": "Generated description for concept referred to by key \"StatusChanged:0.0.1\"" + } + }, + { + "key": { + "name": "VPNActEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNActEvent", + "version": "0.0.1" + }, + "UUID": "8c285b89-7102-37b1-aa1b-86d080df0aa9", + "description": "Generated description for concept referred to by key \"VPNActEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNActTask", + "version": "0.0.1" + }, + "UUID": "a83d78d1-b3b0-3742-85e4-25364bdbae1f", + "description": "Generated description for concept referred to by key \"VPNActTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNContext", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNContext", + "version": "0.0.1" + }, + "UUID": "ab3caa58-6748-373d-a6b9-08528951c261", + "description": "Generated description for concept referred to by key \"VPNContext:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomer", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomer", + "version": "0.0.1" + }, + "UUID": "3c987f55-b978-3e32-9858-4b1978594bf3", + "description": "Generated description for concept referred to by key \"VPNCustomer:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + "UUID": "9d8d7a8b-13f8-3e7f-a34c-8ce5bb988290", + "description": "Generated description for concept referred to by key \"VPNCustomerAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtActEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtActEvent", + "version": "0.0.1" + }, + "UUID": "dc6fef76-6014-392f-b017-116bc9a35249", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtActEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtActTask", + "version": "0.0.1" + }, + "UUID": "2c9f5fb2-3fda-329a-bf81-9bbe72c0b39c", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtActTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtDecideEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtDecideEvent", + "version": "0.0.1" + }, + "UUID": "9e86afcd-a764-3645-afdd-0fe373c2f9d0", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtDecideEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtDecideTask", + "version": "0.0.1" + }, + "UUID": "7c033835-24e5-302b-a2e7-1f357f4a49da", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtDecideTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtEstablishEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtEstablishEvent", + "version": "0.0.1" + }, + "UUID": "6767849e-b884-3de3-a9de-49ec21d1653a", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtEstablishEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtEstablishTask", + "version": "0.0.1" + }, + "UUID": "8d267e4f-a8b3-3ec1-9e00-4fe49c4824ac", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtEstablishTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtMatchEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtMatchEvent", + "version": "0.0.1" + }, + "UUID": "3113d098-5f5d-30b1-91ad-24006aca60b3", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtMatchEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtMatchTask", + "version": "0.0.1" + }, + "UUID": "f7381ce6-2df0-3123-bc4d-fdb28ec0b0b4", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtMatchTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtPolicy", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtPolicy", + "version": "0.0.1" + }, + "UUID": "51645b2f-19ab-3792-8088-a2b0eab9a75b", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtPolicy:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtTriggerEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtTriggerEvent", + "version": "0.0.1" + }, + "UUID": "dd7ea64d-863e-3194-8eee-e4aab7af1454", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtTriggerEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNDatatypes", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDatatypes", + "version": "0.0.1" + }, + "UUID": "45ec61a2-39c6-3544-9d48-49e29b60daa7", + "description": "Generated description for concept referred to by key \"VPNDatatypes:0.0.1\"" + } + }, + { + "key": { + "name": "VPNDecideEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideEvent", + "version": "0.0.1" + }, + "UUID": "c8721fa3-ff74-3222-b2e4-9824b8daf7bb", + "description": "Generated description for concept referred to by key \"VPNDecideEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNDecidePriorityTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecidePriorityTask", + "version": "0.0.1" + }, + "UUID": "cb2a893a-7719-3208-9952-a3fa3565cbb4", + "description": "Generated description for concept referred to by key \"VPNDecidePriorityTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNDecideSLATask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideSLATask", + "version": "0.0.1" + }, + "UUID": "bef3b2b0-5575-3b50-a1bc-dd05541cb800", + "description": "Generated description for concept referred to by key \"VPNDecideSLATask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNDecideSolvedTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideSolvedTask", + "version": "0.0.1" + }, + "UUID": "137f8cd1-0f33-3c03-88a5-d0408fe0c26a", + "description": "Generated description for concept referred to by key \"VPNDecideSolvedTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideTask", + "version": "0.0.1" + }, + "UUID": "dc647231-a4d6-307e-bd42-d32fa0a2c2c5", + "description": "Generated description for concept referred to by key \"VPNDecideTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNEstablishEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNEstablishEvent", + "version": "0.0.1" + }, + "UUID": "a5ec4ca5-b0ce-3098-afc2-61de501e35bd", + "description": "Generated description for concept referred to by key \"VPNEstablishEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNEstablishTask", + "version": "0.0.1" + }, + "UUID": "e5b00ad5-92d8-3ffc-93e0-ddd1c02e584f", + "description": "Generated description for concept referred to by key \"VPNEstablishTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNEvents", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNEvents", + "version": "0.0.1" + }, + "UUID": "07c2931d-9011-3d85-bca6-c10d43856f60", + "description": "Generated description for concept referred to by key \"VPNEvents:0.0.1\"" + } + }, + { + "key": { + "name": "VPNKeyInformation", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNKeyInformation", + "version": "0.0.1" + }, + "UUID": "c2516499-a76d-3526-a6ee-d1d93c598931", + "description": "Generated description for concept referred to by key \"VPNKeyInformation:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLink", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLink", + "version": "0.0.1" + }, + "UUID": "27e97f3a-8b39-3ae7-ac26-af9370cccd43", + "description": "Generated description for concept referred to by key \"VPNLink:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + "UUID": "5a234e2d-9efd-336f-b26d-1f909cdb44be", + "description": "Generated description for concept referred to by key \"VPNLinkAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtActEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtActEvent", + "version": "0.0.1" + }, + "UUID": "20fa2bc5-366a-3127-bbbf-c3408e30196d", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtActEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtActTask", + "version": "0.0.1" + }, + "UUID": "63d61114-538c-3c02-8bc6-d0214dc09824", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtActTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtDecideEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtDecideEvent", + "version": "0.0.1" + }, + "UUID": "42ecba03-b4cb-3a8f-8c0b-cc63da5eb28a", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtDecideEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtDecideTask", + "version": "0.0.1" + }, + "UUID": "ade15880-f26b-32fe-accc-58016cc8bdc5", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtDecideTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtEstablishEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtEstablishEvent", + "version": "0.0.1" + }, + "UUID": "6e10e999-4c93-34b2-8723-434a47e80d24", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtEstablishEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtEstablishTask", + "version": "0.0.1" + }, + "UUID": "b3e9531b-162c-3b07-b47f-4013380e59e8", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtEstablishTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtMatchEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtMatchEvent", + "version": "0.0.1" + }, + "UUID": "fc2a579b-2424-3a20-9e48-b7fcc72259a7", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtMatchEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtMatchTask", + "version": "0.0.1" + }, + "UUID": "48c628d8-d660-37ec-8d24-c17c46ad3109", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtMatchTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtPolicy", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtPolicy", + "version": "0.0.1" + }, + "UUID": "d3818863-91dc-3ed6-9087-c4cd76707003", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtPolicy:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtTriggerEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtTriggerEvent", + "version": "0.0.1" + }, + "UUID": "7af8f4e2-c662-3ccf-a77a-6dd2aafdd773", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtTriggerEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNMatchEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNMatchEvent", + "version": "0.0.1" + }, + "UUID": "e9a25835-f032-3f6f-ae01-8b043cae3680", + "description": "Generated description for concept referred to by key \"VPNMatchEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNMatchTask", + "version": "0.0.1" + }, + "UUID": "e5eb173b-18fd-34d2-924c-d4bc00979e86", + "description": "Generated description for concept referred to by key \"VPNMatchTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNPolicies", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNPolicies", + "version": "0.0.1" + }, + "UUID": "1b333371-46d0-3ae7-9da9-d2f7b3525fbc", + "description": "Generated description for concept referred to by key \"VPNPolicies:0.0.1\"" + } + }, + { + "key": { + "name": "VPNPolicy", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNPolicy", + "version": "0.0.1" + }, + "UUID": "5c1491a5-01ae-37cd-aa57-7aac775b6f56", + "description": "Generated description for concept referred to by key \"VPNPolicy:0.0.1\"" + } + }, + { + "key": { + "name": "VPNPolicyModelAvro", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNPolicyModelAvro", + "version": "0.0.1" + }, + "UUID": "52795d54-f668-3993-a5ab-ed754125c83a", + "description": "Generated description for concept referred to by key \"VPNPolicyModelAvro:0.0.1\"" + } + }, + { + "key": { + "name": "VPNProblem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNProblem", + "version": "0.0.1" + }, + "UUID": "0bcf2824-9a3a-394b-981f-1b6b51982a9f", + "description": "Generated description for concept referred to by key \"VPNProblem:0.0.1\"" + } + }, + { + "key": { + "name": "VPNProblemAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNProblemAlbum", + "version": "0.0.1" + }, + "UUID": "ea4e8801-7391-3cb4-a93a-1dfd51ec392c", + "description": "Generated description for concept referred to by key \"VPNProblemAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "VPNTasks", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNTasks", + "version": "0.0.1" + }, + "UUID": "26cae2a3-9eba-3b73-b91c-ef70806cf158", + "description": "Generated description for concept referred to by key \"VPNTasks:0.0.1\"" + } + }, + { + "key": { + "name": "VPNTriggerEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNTriggerEvent", + "version": "0.0.1" + }, + "UUID": "61759db7-3539-307a-9310-9f3870dab1d6", + "description": "Generated description for concept referred to by key \"VPNTriggerEvent:0.0.1\"" + } + }, + { + "key": { + "name": "YtdDT", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "YtdDT", + "version": "0.0.1" + }, + "UUID": "7bda6f7c-8469-3aea-a075-c1d4acc2a1c8", + "description": "Generated description for concept referred to by key \"YtdDT:0.0.1\"" + } + } + ] + } + }, + "policies": { + "key": { + "name": "VPNPolicies", + "version": "0.0.1" + }, + "policyMap": { + "entry": [ + { + "key": { + "name": "VPNCustomerCtxtPolicy", + "version": "0.0.1" + }, + "value": { + "policyKey": { + "name": "VPNCustomerCtxtPolicy", + "version": "0.0.1" + }, + "template": "MEDA", + "state": { + "entry": [ + { + "key": "Act", + "value": { + "stateKey": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + }, + "trigger": { + "name": "VPNCustomerCtxtDecideEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Act_NULL", + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + }, + "outgoingEvent": { + "name": "VPNCustomerCtxtActEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "NULL", + "parentKeyVersion": "0.0.0", + "parentLocalName": "NULL", + "localName": "NULL" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNCustomerCtxtActTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNCustomerCtxtActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "VPNCustomerCtxtActTask_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + } + ] + } + } + }, + { + "key": "Decide", + "value": { + "stateKey": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + }, + "trigger": { + "name": "VPNCustomerCtxtEstablishEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Decide_Act", + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + }, + "outgoingEvent": { + "name": "VPNCustomerCtxtDecideEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNCustomerCtxtDecideTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNCustomerCtxtDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "VPNCustomerCtxtDecideTask_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + } + ] + } + } + }, + { + "key": "Establish", + "value": { + "stateKey": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + }, + "trigger": { + "name": "VPNCustomerCtxtMatchEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Establish_Decide", + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + }, + "outgoingEvent": { + "name": "VPNCustomerCtxtEstablishEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNCustomerCtxtEstablishTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNCustomerCtxtEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "VPNCustomerCtxtEstablishTask_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + } + ] + } + } + }, + { + "key": "Match", + "value": { + "stateKey": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Match" + }, + "trigger": { + "name": "VPNCustomerCtxtTriggerEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Match_Establish", + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + }, + "outgoingEvent": { + "name": "VPNCustomerCtxtMatchEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNCustomerCtxtMatchTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNCustomerCtxtMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "VPNCustomerCtxtMatchTask_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + } + ] + } + } + } + ] + }, + "firstState": "Match" + } + }, + { + "key": { + "name": "VPNLinkCtxtPolicy", + "version": "0.0.1" + }, + "value": { + "policyKey": { + "name": "VPNLinkCtxtPolicy", + "version": "0.0.1" + }, + "template": "MEDA", + "state": { + "entry": [ + { + "key": "Act", + "value": { + "stateKey": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + }, + "trigger": { + "name": "VPNLinkCtxtDecideEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Act_NULL", + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + }, + "outgoingEvent": { + "name": "VPNLinkCtxtActEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "NULL", + "parentKeyVersion": "0.0.0", + "parentLocalName": "NULL", + "localName": "NULL" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNLinkCtxtActTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNLinkCtxtActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "VPNLinkCtxtActTask_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + } + ] + } + } + }, + { + "key": "Decide", + "value": { + "stateKey": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + }, + "trigger": { + "name": "VPNLinkCtxtEstablishEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Decide_Act", + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + }, + "outgoingEvent": { + "name": "VPNLinkCtxtDecideEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNLinkCtxtDecideTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNLinkCtxtDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "VPNLinkCtxtDecideTask_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + } + ] + } + } + }, + { + "key": "Establish", + "value": { + "stateKey": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + }, + "trigger": { + "name": "VPNLinkCtxtMatchEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Establish_Decide", + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + }, + "outgoingEvent": { + "name": "VPNLinkCtxtEstablishEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNLinkCtxtEstablishTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNLinkCtxtEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "VPNLinkCtxtEstablishTask_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + } + ] + } + } + }, + { + "key": "Match", + "value": { + "stateKey": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Match" + }, + "trigger": { + "name": "VPNLinkCtxtTriggerEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Match_Establish", + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + }, + "outgoingEvent": { + "name": "VPNLinkCtxtMatchEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNLinkCtxtMatchTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNLinkCtxtMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "VPNLinkCtxtMatchTask_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + } + ] + } + } + } + ] + }, + "firstState": "Match" + } + }, + { + "key": { + "name": "VPNPolicy", + "version": "0.0.1" + }, + "value": { + "policyKey": { + "name": "VPNPolicy", + "version": "0.0.1" + }, + "template": "MEDA", + "state": { + "entry": [ + { + "key": "Act", + "value": { + "stateKey": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + }, + "trigger": { + "name": "VPNDecideEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Act_NULL", + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + }, + "outgoingEvent": { + "name": "VPNActEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "NULL", + "parentKeyVersion": "0.0.0", + "parentLocalName": "NULL", + "localName": "NULL" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "TaskSelectionLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask)\nlogger.debug(subject.id + \":\" + subject.stateName + \", using default task\" + subject.defaultTaskKey);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNActTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "VPNActTask_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + } + ] + } + } + }, + { + "key": "Decide", + "value": { + "stateKey": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + }, + "trigger": { + "name": "VPNEstablishEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Decide_Act", + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + }, + "outgoingEvent": { + "name": "VPNDecideEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "TaskSelectionLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nlogger.debug(inFields);\n\nString incomingLink = inFields[\"Link\"];\nString incomingProblemStatus = inFields[\"ProblemStatus\"];\n\n/* 0 label=VPNDecideTask */\n\nif (incomingLink.equals(\"L09\") && incomingProblemStatus.equals(\"NEWPROBLEM\")) {\n\tSystem.err.println(\"l9 NEWPROBLEM\");\n\tsubject.getTaskKey(\"VPNDecideSLATask\").copyTo(selectedTask);\n\treturn true;\n}\nelse if (incomingLink.equals(\"L09\") && inFields[\"ProblemStatus\"].equals(\"NEWSOLVED\")) {\n\tSystem.err.println(\"l9 NEWSOLVED\");\n\tsubject.getTaskKey(\"VPNDecideSolvedTask\").copyTo(selectedTask);\n\treturn true;\n}\nelse if (incomingLink.equals(\"L10\") && incomingProblemStatus.equals(\"NEWPROBLEM\")) {\n\tSystem.err.println(\"l10 NEWPROBLEM\");\n\tsubject.getTaskKey(\"VPNDecidePriorityTask\").copyTo(selectedTask);\n\treturn true;\n}\nelse if (incomingLink.equals(\"L10\") && incomingProblemStatus.equals(\"NEWSOLVED\")) {\n\tSystem.err.println(\"l10 NEWSOLVED\");\n\tsubject.getTaskKey(\"VPNDecideSolvedTask\").copyTo(selectedTask);\n\treturn true;\n}\nelse {\n\tsubject.defaultTaskKey.copyTo(selectedTask);\n\treturn true;\n}" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNDecideTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNDecidePriorityTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "VPNDecidePriorityTask_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "VPNDecideSLATask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "VPNDecideSLATask_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "VPNDecideSolvedTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "VPNDecideSolvedTask_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "VPNDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "VPNDecideTask_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + } + ] + } + } + }, + { + "key": "Establish", + "value": { + "stateKey": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + }, + "trigger": { + "name": "VPNMatchEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Establish_Decide", + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + }, + "outgoingEvent": { + "name": "VPNEstablishEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "TaskSelectionLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask)\nlogger.debug(subject.id + \":\" + subject.stateName + \", using default task\" + subject.defaultTaskKey);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNEstablishTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "VPNEstablishTask_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + } + ] + } + } + }, + { + "key": "Match", + "value": { + "stateKey": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Match" + }, + "trigger": { + "name": "VPNTriggerEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Match_Establish", + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + }, + "outgoingEvent": { + "name": "VPNMatchEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "TaskSelectionLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask)\nlogger.debug(subject.id + \":\" + subject.stateName + \", using default task\" + subject.defaultTaskKey);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNMatchTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "VPNMatchTask_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + } + ] + } + } + } + ] + }, + "firstState": "Match" + } + } + ] + } + }, + "tasks": { + "key": { + "name": "VPNTasks", + "version": "0.0.1" + }, + "taskMap": { + "entry": [ + { + "key": { + "name": "VPNActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNActTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Action", + "value": { + "key": "Action", + "fieldSchemaKey": { + "name": "Action", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "CustomerMap", + "value": { + "key": "CustomerMap", + "fieldSchemaKey": { + "name": "CustomerMap", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkMap", + "value": { + "key": "LinkMap", + "fieldSchemaKey": { + "name": "LinkMap", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import java.util.HashMap;\nimport org.apache.avro.generic.GenericRecord;\n\nlogger.debug(subject.id + \":\" + subject.taskName);\n\nSystem.err.println(inFields);\nlogger.debug(subject.id);\n\nSystem.err.println(\"*** Links ***\");\nfor (GenericRecord link: getContextAlbum(\"VPNLinkAlbum\").values()) {\n System.err.println(link.get(\"linkName\") + \"\\t\" + link.get(\"active\"));\n}\n\nSystem.err.println(\"*** Customers ***\");\nfor (GenericRecord customer: getContextAlbum(\"VPNCustomerAlbum\").values()) {\n System.err.println(\n \t customer.get(\"customerName\") + \"\\t\" +\n\t\t customer.get(\"slaDT\") + \"\\t\" +\n\t\t customer.get(\"ytdDT\") + \"\\t\" + \n\t\t customer.get(\"linksInUse\"));\n}\n\nHashMap linkMap = subject.getOutFieldSchemaHelper(\"LinkMap\").createNewInstance();\nlinkMap.putAll(getContextAlbum(\"VPNLinkAlbum\"));\noutFields[\"LinkMap\"] = linkMap;\n\nHashMap customerMap = subject.getOutFieldSchemaHelper(\"CustomerMap\").createNewInstance();\ncustomerMap.putAll(getContextAlbum(\"VPNCustomerAlbum\"));\noutFields[\"CustomerMap\"] = customerMap;\n\nSystem.err.println(\"outFields: \" + outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtActTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.apache.avro.generic.GenericData.Array;\nimport org.apache.avro.generic.GenericRecord;\nimport org.apache.avro.Schema;\n\nlogger.debug(subject.id);\nSystem.err.println(inFields);\n\nString vpnCustomerName = inFields[\"CustomerName\"];\nGenericRecord vpnCustomer = getContextAlbum(\"VPNCustomerAlbum\").get(vpnCustomerName);\nif (vpnCustomer == null) {\n\tvpnCustomer = getContextAlbum(\"VPNCustomerAlbum\").getSchemaHelper.createNewInstance();\n\tvpnCustomer.put(\"customerName\", vpnCustomerName)\n\tvpnCustomer.put(\"slaDT\", 0);\n\tvpnCustomer.put(\"ytdDT\", 0);\n\tvpnCustomer.put(\"linksInUse\", new Array(0, Schema.createArray(vpnCustomer.getSchema().getField(\"linksInUse\").schema())));\n}\nvpnCustomer.put(\"slaDT\", inFields[\"SlaDT\"]);\nvpnCustomer.put(\"ytdDT\", inFields[\"YtdDT\"]);\n\nfor (String usedLinkName: inFields[\"LinkList\"].split(\" \")) {\n\tGenericRecord vpnLink = getContextAlbum(\"VPNLinkAlbum\").get(usedLinkName);\n\tif (vpnLink != null) {\n\t\tvpnCustomer.get(\"linksInUse\").add(vpnLink.get(\"linkName\"));\n\t}\n\telse {\n\t\tSystem.err.println(\"unknown link \\\"\" + usedLinkName + \"\\\" specified on customer \\\"\" + vpnCustomerName + \"\\\"\");\n\t}\n}\n\ngetContextAlbum(\"VPNCustomerAlbum\").put(vpnCustomer.get(\"customerName\"), vpnCustomer);\n\nSystem.err.println(\"*** Customers ***\");\nfor (GenericRecord customer: getContextAlbum(\"VPNCustomerAlbum\").values()) {\n\tSystem.err.println(\n\t\t\tcustomer.get(\"customerName\") + \"\\t\" +\n\t\t\tcustomer.get(\"slaDT\") + \"\\t\" +\n\t\t\tcustomer.get(\"ytdDT\") + \"\\t\" + \n\t\t\tcustomer.get(\"linksInUse\"));\n}\n\nString outLinkList = \"\";\nfor (String link : vpnCustomer.get(\"linksInUse\")) {\n\toutLinkList += link + \" \";\n}\n\noutFields[\"CustomerName\"] = vpnCustomer.get(\"customerName\");\noutFields[\"LinkList\"] = outLinkList.trim();\noutFields[\"SlaDT\"] = vpnCustomer.get(\"slaDT\");\noutFields[\"YtdDT\"] = vpnCustomer.get(\"ytdDT\");\n\nSystem.err.println(\"outFields: \" + outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtDecideTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtEstablishTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtMatchTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNDecidePriorityTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecidePriorityTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Action", + "value": { + "key": "Action", + "fieldSchemaKey": { + "name": "Action", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.apache.avro.generic.GenericRecord;\n\nlogger.debug(subject.id + \":\" + subject.taskName);\n\nlogger.debug(\"VPNDecidePriorityTask execution logic-Praveen\");\nlogger.debug(inFields);\noutFields[\"Link\"] = inFields[\"Link\"];\noutFields[\"Action\"] = \"Disconnect customers based on Priority\";\n\nArray affectedCustomersArray = subject.getOutFieldSchemaHelper(\"AffectedCustomers\").createNewInstance();\naffectedCustomersArray.add(\"A\");\noutFields[\"AffectedCustomers\"] = affectedCustomersArray;\n\nSystem.err.println(\"outFields: \" + outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNDecideSLATask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideSLATask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Action", + "value": { + "key": "Action", + "fieldSchemaKey": { + "name": "Action", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.apache.avro.generic.GenericData.Array;\nimport org.apache.avro.generic.GenericRecord;\n\nlogger.debug(subject.id + \":\" + subject.taskName);\n\nSystem.err.println(inFields);\n\noutFields[\"Link\"] = inFields[\"Link\"];\noutFields[\"Action\"] = \"Disconnect customers based on SLA Agreement\";\n\nArray slaViolatedCustomerArray = subject.getOutFieldSchemaHelper(\"AffectedCustomers\").createNewInstance();\n\nSystem.err.println(\"cust\\tslaDT\\tytdDT\");\nfor (GenericRecord customer: getContextAlbum(\"VPNCustomerAlbum\").values()) {\n\tSystem.err.println(customer.get(\"customerName\") + \"\\t\" + customer.get(\"slaDT\") + \"\\t\" + customer.get(\"ytdDT\"));\n\n\tif (customer.get(\"ytdDT\") > customer.get(\"slaDT\")) {\n\t\tslaViolatedCustomerArray.add(customer.get(\"customerName\"));\n\t}\n}\n\nSystem.err.println(\"Customers whose SLAs are violated are:\" + slaViolatedCustomerArray);\n\noutFields[\"AffectedCustomers\"] = slaViolatedCustomerArray;\n\nSystem.err.println(\"outFields: \" + outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNDecideSolvedTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideSolvedTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Action", + "value": { + "key": "Action", + "fieldSchemaKey": { + "name": "Action", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.apache.avro.generic.GenericRecord;\n\nlogger.debug(subject.id + \":\" + subject.taskName);\n\nSystem.err.println(inFields);\noutFields[\"Action\"] = \"Rebuild VPN for customers\";\noutFields[\"Link\"] = inFields[\"Link\"];\noutFields[\"AffectedCustomers\"] = inFields[\"AffectedCustomers\"];\n\n/* Get the problem-link-object for this link */\nString incomingLink = inFields[\"Link\"];\n\nGenericRecord vpnProblem = getContextAlbum(\"VPNProblemAlbum\").get(incomingLink);\n\nif (null != vpnProblem) {\n /* Calculate the total down time from the problem-link-object */\n long linkDownTimeinSecs = vpnProblem.get(\"endTime\") - vpnProblem.get(\"startTime\")/1000;\n /* Get customers from Policy context and add to ytdDT */\n for (GenericRecord customerName : vpnProblem.get(\"affectedCustomers\")) {\n \tGenericRecord customer = getContextAlbum(\"VPNCustomerAlbum\").get(customerName);\n\t\tcustomer.put(\"ytdDT\", customer.get(\"ytdDT\") + linkDownTimeinSecs);\n }\n}\n\n/* Remove the problem-link-object */\ngetContextAlbum(\"VPNProblemAlbum\").remove(incomingLink);\n\nSystem.err.println(\"outFields: \" + outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Action", + "value": { + "key": "Action", + "fieldSchemaKey": { + "name": "Action", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNEstablishTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Status", + "value": { + "key": "Status", + "fieldSchemaKey": { + "name": "Status", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "StatusChanged", + "value": { + "key": "StatusChanged", + "fieldSchemaKey": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.apache.avro.generic.GenericData.Array;\nimport org.apache.avro.generic.GenericRecord;\nimport org.apache.avro.Schema;\n\nlogger.debug(subject.getId() + \":\" + subject.getTaskName());\n\nSystem.err.println(inFields);\nString vpnLinkName = inFields[\"Link\"];\n\nGenericRecord vpnLink = getContextAlbum(\"VPNLinkAlbum\") .get(vpnLinkName);\nGenericRecord vpnProblem = getContextAlbum(\"VPNProblemAlbum\").get(vpnLinkName);\n\nString incomingStatus = inFields[\"Status\"];\nBoolean incomingStatusChanged = (Boolean)inFields[\"StatusChanged\"];\n\nif (incomingStatus.equalsIgnoreCase(\"DOWN\")) {\n\tvpnLink.put(\"active\", false);\n}\nelse {\n\tvpnLink.put(\"active\", true);\n}\n\nlong now = System.currentTimeMillis();\n\nArray affectedCustomerArray = subject.getOutFieldSchemaHelper(\"AffectedCustomers\").createNewInstance();\n\nif (incomingStatusChanged == false) {\n\toutFields[\"Link\"] = vpnLinkName;\n\tif (incomingStatus.equalsIgnoreCase(\"UP\")) {\n\t\toutFields[\"ProblemStatus\"] = \"NOPROBLEM\";\n\t\toutFields[\"AffectedCustomers\"] = affectedCustomerArray;\n\t}\n\telse if (incomingStatus.equalsIgnoreCase(\"DOWN\")) {\n\t\tfor (String customerName: vpnProblem.get(\"affectedCustomers\")) {\n\t\t\taffectedCustomerArray.add(customerName);\n\t\t}\n\t\toutFields[\"ProblemStatus\"] = \"STILLPROBLEM\";\n\t\toutFields[\"AffectedCustomers\"] = affectedCustomerArray;\n\t}\n\telse {\n\t\tSystem.err.println(\"VpnEstablishLogic: Unsupported link type!!!\" + vpnLinkName + \" \" + incomingStatus);\n\t}\n}\nelse if (incomingStatusChanged == true) {\n\t/* indicates new problem or new solution */\n\tif\t(incomingStatus.equalsIgnoreCase(\"UP\")) {\n\t\t/* A link that was down is now up */\n\t\tif (vpnProblem != null) {\n\t\t\tvpnProblem.put(\"endTime\", now);\n\t\t}\n\t\telse {\n\t\t\tSystem.err.println(\"VpnEstablishLogic: Link change to UP, but with no report of a previous problem!!!\" + vpnLinkName);\n\t\t}\n\t\tfor (String customerName: vpnProblem.get(\"affectedCustomers\")) {\n\t\t\taffectedCustomerArray.add(customerName);\n\t\t}\n\t\toutFields[\"Link\"] = vpnLinkName;\n\t\toutFields[\"AffectedCustomers\"] = affectedCustomerArray;\n\t\toutFields[\"ProblemStatus\"] = \"NEWSOLVED\";\n\t}\n\telse if (incomingStatus.equalsIgnoreCase(\"DOWN\")) {\n\t\t/* A link that was up is now down */\n\t\tif (vpnProblem == null) {\n\t\t\tvpnProblem = getContextAlbum(\"VPNProblemAlbum\").getSchemaHelper().createNewInstance();\n\t\t\tvpnProblem.put(\"problemName\", vpnLinkName);\n\t\t\tvpnProblem.put(\"startTime\", now);\n\t\t\tvpnProblem.put(\"affectedCustomers\", new Array(0, Schema.createArray(vpnProblem.getSchema().getField(\"affectedCustomers\").schema())));\n\t\t\tgetContextAlbum(\"VPNProblemAlbum\").put(vpnLinkName, vpnProblem);\n\n\t\t\tfor (GenericRecord vpnCustomer : getContextAlbum(\"VPNCustomerAlbum\").values()) {\n\t\t\t\tif (vpnCustomer.get(\"linksInUse\").contains(vpnLinkName)) {\n\t\t\t\t\tvpnProblem.get(\"affectedCustomers\").add(vpnCustomer.get(\"customerName\"));\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tgetContextAlbum(\"VPNProblemAlbum\").put(vpnLinkName, vpnProblem);\n\n\t\t\tfor (String customerName: vpnProblem.get(\"affectedCustomers\")) {\n\t\t\t\taffectedCustomerArray.add(customerName);\n\t\t\t}\n\t\t\toutFields[\"Link\"] = vpnLinkName;\n\t\t\toutFields[\"AffectedCustomers\"] = affectedCustomerArray;\n\t\t\toutFields[\"ProblemStatus\"] = \"NEWPROBLEM\";\n\t\t}\n\t\telse {\n\t\t\tSystem.err.println(\"VpnEstablishLogic: Link change to DOWN, but with a report of a previous problem: \" + vpnLinkName + \" Not updating problem: \" + vpnProblem);\n\t\t\tfor (String customerName: vpnProblem.get(\"affectedCustomers\")) {\n\t\t\t\taffectedCustomerArray.add(customerName);\n\t\t\t}\n\t\t\toutFields[\"Link\"] = vpnLinkName;\n\t\t\toutFields[\"AffectedCustomers\"] = affectedCustomerArray;\n\t\t\toutFields[\"ProblemStatus\"] = \"STILLPROBLEM\";\n\t\t}\n\t}\n\telse {\n\t\tSystem.err.println(\"VpnEstablishLogic: Unsupported link type!!!\" + vpnLinkName + \" \" + incomingStatus);\n\t}\n}\nelse {\n\tthrow new IllegalArgumentException(\"MatchEvent down time cannot be less than 0\");\n}\n\nSystem.err.println(\"outFields: \" + outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNLinkCtxtActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtActTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.apache.avro.generic.GenericRecord;\n\nlogger.debug(subject.id);\nSystem.err.println(inFields);\n\nString vpnLinkName = inFields[\"Link\"];\nGenericRecord vpnLink = getContextAlbum(\"VPNLinkAlbum\").get(vpnLinkName);\n\nif (vpnLink == null) {\n\tvpnLink = getContextAlbum(\"VPNLinkAlbum\").getSchemaHelper().createNewInstance();\n\tvpnLink.put(\"linkName\", vpnLinkName);\n\tvpnLink.put(\"active\", true);\n\tgetContextAlbum(\"VPNLinkAlbum\").put(vpnLinkName, vpnLink);\n}\nvpnLink.put(\"active\", inFields[\"LinkUp\"])\n\nSystem.err.println(\"*** Links ***\");\nfor (GenericRecord link: getContextAlbum(\"VPNLinkAlbum\").values()) {\n\tSystem.err.println(link.get(\"linkName\") + \"\\t\" + link.get(\"active\"));\n}\n\noutFields[\"Link\"] = vpnLink.get(\"linkName\");\noutFields[\"LinkUp\"] = vpnLink.get(\"active\");\nSystem.err.println(\"outFields: \" + outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNLinkCtxtDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtDecideTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNLinkCtxtEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtEstablishTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNLinkCtxtMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtMatchTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNMatchTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Status", + "value": { + "key": "Status", + "fieldSchemaKey": { + "name": "Status", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Status", + "value": { + "key": "Status", + "fieldSchemaKey": { + "name": "Status", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "StatusChanged", + "value": { + "key": "StatusChanged", + "fieldSchemaKey": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.apache.avro.generic.GenericRecord;\n\nlogger.debug(subject.id + \":\" + subject.taskName);\nSystem.err.println(inFields);\n\nString vpnLinkName = inFields[\"Link\"];\nString vpnLinkStatus = inFields[\"Status\"];\n\nGenericRecord vpnLink = getContextAlbum(\"VPNLinkAlbum\").get(vpnLinkName);\n\nif (vpnLink == null) {\n\tvpnLink = getContextAlbum(\"VPNLinkAlbum\").createItem();\n\tvpnLink.put(\"linkName\", vpnLinkName);\n\tgetContextAlbum(\"VPNLinkAlbum\").put(vpnLinkName, vpnLink);\n\n\t\n\tvpnLink = new VPNLink(vpnLinkName);\n\tgetContextAlbum(\"VPNLinkAlbum\").put(vpnLinkName, vpnLink);\n\tif (vpnLinkStatus.equalsIgnoreCase(\"DOWN\")) {\n\t\tvpnLink.put(\"active\", true);\n\t}\n\telse {\n\t\tvpnLink.put(\"active\", false);\n\t}\n}\n\nif (vpnLinkStatus.equalsIgnoreCase(\"DOWN\")) {\n\tif (vpnLinkName != null) {\n\t\tif (vpnLink.get(\"active\")) {\n\t\t\toutFields[\"StatusChanged\"] = true;\n\t\t}\n\t\telse {\n\t\t\toutFields[\"StatusChanged\"] = false;\n\t\t}\n\t\toutFields[\"Link\"] = vpnLinkName;\n\t\toutFields[\"Status\"] = vpnLinkStatus;\n\t}\n\telse {\n\t\tSystem.err.println(\"match: trigger context error: link is null\");\n\t}\n}\nelse if (vpnLinkStatus.equalsIgnoreCase(\"UP\")) {\n\tif (vpnLinkName != null) {\n\t\tif (!vpnLink.get(\"active\")) {\n\t\t\toutFields[\"StatusChanged\"] = true;\n\t\t}\n\t\telse {\n\t\t\toutFields[\"StatusChanged\"] = false;\n\t\t}\n\t\toutFields[\"Link\"] = vpnLinkName;\n\t\toutFields[\"Status\"] = vpnLinkStatus;\n\t}\n\telse {\n\t\tSystem.err.println(\"match: trigger context error: link is null\");\n\t}\n}\nelse {\n\tSystem.err.println(\"match: trigger context error: status neither UP nor DOWN\");\n}\n\nSystem.err.println(\"outFields: \" + outFields);\nreturn true;" + } + } + } + ] + } + }, + "events": { + "key": { + "name": "VPNEvents", + "version": "0.0.1" + }, + "eventMap": { + "entry": [ + { + "key": { + "name": "VPNActEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNActEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "CustomerMap", + "value": { + "key": "CustomerMap", + "fieldSchemaKey": { + "name": "CustomerMap", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkMap", + "value": { + "key": "LinkMap", + "fieldSchemaKey": { + "name": "LinkMap", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtActEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtActEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtDecideEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtDecideEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtEstablishEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtEstablishEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtMatchEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtMatchEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtTriggerEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtTriggerEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNDecideEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Action", + "value": { + "key": "Action", + "fieldSchemaKey": { + "name": "Action", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNEstablishEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNEstablishEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNLinkCtxtActEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtActEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNLinkCtxtDecideEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtDecideEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNLinkCtxtEstablishEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtEstablishEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNLinkCtxtMatchEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtMatchEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNLinkCtxtTriggerEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtTriggerEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNMatchEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNMatchEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Status", + "value": { + "key": "Status", + "fieldSchemaKey": { + "name": "Status", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "StatusChanged", + "value": { + "key": "StatusChanged", + "fieldSchemaKey": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNTriggerEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNTriggerEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Status", + "value": { + "key": "Status", + "fieldSchemaKey": { + "name": "Status", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + } + ] + } + }, + "albums": { + "key": { + "name": "VPNContext", + "version": "0.0.1" + }, + "albums": { + "entry": [ + { + "key": { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + "scope": "GLOBAL", + "isWritable": true, + "itemSchema": { + "name": "VPNCustomer", + "version": "0.0.1" + } + } + }, + { + "key": { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + "scope": "GLOBAL", + "isWritable": true, + "itemSchema": { + "name": "VPNLink", + "version": "0.0.1" + } + } + }, + { + "key": { + "name": "VPNProblemAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNProblemAlbum", + "version": "0.0.1" + }, + "scope": "GLOBAL", + "isWritable": true, + "itemSchema": { + "name": "VPNProblem", + "version": "0.0.1" + } + } + } + ] + } + }, + "schemas": { + "key": { + "name": "VPNDatatypes", + "version": "0.0.1" + }, + "schemas": { + "entry": [ + { + "key": { + "name": "Action", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Action", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "schemaFlavour": "Avro", + "schemaDefinition": "{\n\t\"type\": \"array\", \"items\": \"string\"}\n}" + } + }, + { + "key": { + "name": "CustomerMap", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "CustomerMap", + "version": "0.0.1" + }, + "schemaFlavour": "Avro", + "schemaDefinition": "{\n\t\"type\": \"map\", \"values\": {\n\t\t\"type\" : \"record\",\n\t\t\"name\" : \"VPNCustomer\",\n\t\t\"fields\" : [\n\t\t\t{\"name\" : \"customerName\", \"type\" : \"string\"},\n\t\t\t{\"name\" : \"slaDT\" , \"type\" : \"int\"},\n\t\t\t{\"name\" : \"ytdDT\" , \"type\" : \"int\"}\n\t\t\t]\n\t}\n}" + } + }, + { + "key": { + "name": "CustomerName", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "CustomerName", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "Link", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Link", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "LinkList", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "LinkList", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "LinkMap", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "LinkMap", + "version": "0.0.1" + }, + "schemaFlavour": "Avro", + "schemaDefinition": "{\n\t\"type\": \"map\", \"values\": {\n\t\t\"type\" : \"record\",\n\t\t\"name\" : \"VPNLink\",\n\t\t\"fields\" : [\n\t\t\t{\"name\": \"linkName\", \"type\": \"string\"},\n\t\t\t{\"name\": \"active\", \"type\": \"boolean\"}\n\t\t\t]\n\t}\n}" + } + }, + { + "key": { + "name": "LinkUp", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "LinkUp", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Boolean" + } + }, + { + "key": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "SlaDT", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "SlaDT", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Integer" + } + }, + { + "key": { + "name": "Status", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Status", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Boolean" + } + }, + { + "key": { + "name": "VPNCustomer", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomer", + "version": "0.0.1" + }, + "schemaFlavour": "Avro", + "schemaDefinition": "{\n\t\"type\" : \"record\",\n\t\"name\" : \"VPNCustomer\",\n\t\"fields\" : [\n\t\t{\"name\" : \"customerName\", \"type\" : \"string\"},\n\t\t{\"name\" : \"slaDT\" , \"type\" : \"int\"},\n\t\t{\"name\" : \"ytdDT\" , \"type\" : \"int\"},\n\t\t{\n\t\t\t\"name\": \"linksInUse\",\n\t\t\t\"doc\": \"Links used by this customer\",\n\t\t\t\"type\": {\"type\" : \"array\", \"items\" : \"string\"}\n\t\t}\n\t\t]\n}" + } + }, + { + "key": { + "name": "VPNLink", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLink", + "version": "0.0.1" + }, + "schemaFlavour": "Avro", + "schemaDefinition": "{\n\t\"type\" : \"record\",\n\t\"name\" : \"VPNLink\",\n\t\"fields\" : [\n\t\t{\"name\": \"linkName\", \"type\": \"string\"},\n\t\t{\"name\": \"active\", \"type\": \"boolean\"}\n\t\t]\n}" + } + }, + { + "key": { + "name": "VPNProblem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNProblem", + "version": "0.0.1" + }, + "schemaFlavour": "Avro", + "schemaDefinition": "{\n\t\"type\" : \"record\",\n\t\"name\" : \"VPNProblem\",\n\t\"fields\" : [\n\t\t{\"name\": \"problemName\", \"type\": \"string\"},\n\t\t{\"name\": \"startTime\" , \"type\": \"long\"},\n\t\t{\"name\": \"endTime\" , \"type\": \"long\"},\n\t\t{\n\t\t\t\"name\": \"affectedCustomers\",\n\t\t\t\"doc\": \"customers affected by this problem\",\n\t\t\t\"type\": {\"type\" : \"array\", \"items\" : \"string\"}\n\t\t}\n\t\t]\n}" + } + }, + { + "key": { + "name": "YtdDT", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "YtdDT", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Integer" + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/VPNPolicyModelJava.json b/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/VPNPolicyModelJava.json new file mode 100644 index 000000000..4a8c92f98 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/policymodels/VPNPolicyModelJava.json @@ -0,0 +1,4557 @@ +{ + "apexPolicyModel": { + "key": { + "name": "VPNPolicyModelJava", + "version": "0.0.1" + }, + "keyInformation": { + "key": { + "name": "VPNKeyInformation", + "version": "0.0.1" + }, + "keyInfoMap": { + "entry": [ + { + "key": { + "name": "Action", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Action", + "version": "0.0.1" + }, + "UUID": "fecbf45a-8559-3ba8-be95-c773d8277912", + "description": "Generated description for concept referred to by key \"Action:0.0.1\"" + } + }, + { + "key": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "UUID": "a076b82b-2843-310c-b6a5-a89da296caf7", + "description": "Generated description for concept referred to by key \"AffectedCustomers:0.0.1\"" + } + }, + { + "key": { + "name": "CustomerMap", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "CustomerMap", + "version": "0.0.1" + }, + "UUID": "cc403e79-bf85-3bdc-83dc-86a1ff45abed", + "description": "Generated description for concept referred to by key \"CustomerMap:0.0.1\"" + } + }, + { + "key": { + "name": "CustomerName", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "CustomerName", + "version": "0.0.1" + }, + "UUID": "638a87b0-2040-3ab7-8d1f-3877f6efb250", + "description": "Generated description for concept referred to by key \"CustomerName:0.0.1\"" + } + }, + { + "key": { + "name": "Link", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Link", + "version": "0.0.1" + }, + "UUID": "0e3b3a57-fa0a-3b0d-ad18-0322d1a515f0", + "description": "Generated description for concept referred to by key \"Link:0.0.1\"" + } + }, + { + "key": { + "name": "LinkList", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "LinkList", + "version": "0.0.1" + }, + "UUID": "ec38833a-7f3e-3733-b38b-eb7ecc9e60ca", + "description": "Generated description for concept referred to by key \"LinkList:0.0.1\"" + } + }, + { + "key": { + "name": "LinkMap", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "LinkMap", + "version": "0.0.1" + }, + "UUID": "5eceb73f-c951-360a-afb4-ca7a5376f8a9", + "description": "Generated description for concept referred to by key \"LinkMap:0.0.1\"" + } + }, + { + "key": { + "name": "LinkUp", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "LinkUp", + "version": "0.0.1" + }, + "UUID": "2b9935ab-9b97-3228-ba43-ae48d7743c9f", + "description": "Generated description for concept referred to by key \"LinkUp:0.0.1\"" + } + }, + { + "key": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "UUID": "b26602d0-53cb-357c-aa3a-bd53325c7208", + "description": "Generated description for concept referred to by key \"ProblemStatus:0.0.1\"" + } + }, + { + "key": { + "name": "SlaDT", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "SlaDT", + "version": "0.0.1" + }, + "UUID": "c8a76dcf-d322-3a01-9d4b-c2d9a01359aa", + "description": "Generated description for concept referred to by key \"SlaDT:0.0.1\"" + } + }, + { + "key": { + "name": "Status", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Status", + "version": "0.0.1" + }, + "UUID": "32a032cd-923a-3578-a232-d3ce88434b45", + "description": "Generated description for concept referred to by key \"Status:0.0.1\"" + } + }, + { + "key": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "UUID": "af0da9d9-a2bd-387c-a441-66a0b0a0f434", + "description": "Generated description for concept referred to by key \"StatusChanged:0.0.1\"" + } + }, + { + "key": { + "name": "VPNActEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNActEvent", + "version": "0.0.1" + }, + "UUID": "8c285b89-7102-37b1-aa1b-86d080df0aa9", + "description": "Generated description for concept referred to by key \"VPNActEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNActTask", + "version": "0.0.1" + }, + "UUID": "a83d78d1-b3b0-3742-85e4-25364bdbae1f", + "description": "Generated description for concept referred to by key \"VPNActTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNContext", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNContext", + "version": "0.0.1" + }, + "UUID": "ab3caa58-6748-373d-a6b9-08528951c261", + "description": "Generated description for concept referred to by key \"VPNContext:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomer", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomer", + "version": "0.0.1" + }, + "UUID": "3c987f55-b978-3e32-9858-4b1978594bf3", + "description": "Generated description for concept referred to by key \"VPNCustomer:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + "UUID": "9d8d7a8b-13f8-3e7f-a34c-8ce5bb988290", + "description": "Generated description for concept referred to by key \"VPNCustomerAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtActEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtActEvent", + "version": "0.0.1" + }, + "UUID": "dc6fef76-6014-392f-b017-116bc9a35249", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtActEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtActTask", + "version": "0.0.1" + }, + "UUID": "2c9f5fb2-3fda-329a-bf81-9bbe72c0b39c", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtActTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtDecideEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtDecideEvent", + "version": "0.0.1" + }, + "UUID": "9e86afcd-a764-3645-afdd-0fe373c2f9d0", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtDecideEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtDecideTask", + "version": "0.0.1" + }, + "UUID": "7c033835-24e5-302b-a2e7-1f357f4a49da", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtDecideTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtEstablishEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtEstablishEvent", + "version": "0.0.1" + }, + "UUID": "6767849e-b884-3de3-a9de-49ec21d1653a", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtEstablishEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtEstablishTask", + "version": "0.0.1" + }, + "UUID": "8d267e4f-a8b3-3ec1-9e00-4fe49c4824ac", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtEstablishTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtMatchEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtMatchEvent", + "version": "0.0.1" + }, + "UUID": "3113d098-5f5d-30b1-91ad-24006aca60b3", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtMatchEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtMatchTask", + "version": "0.0.1" + }, + "UUID": "f7381ce6-2df0-3123-bc4d-fdb28ec0b0b4", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtMatchTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtPolicy", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtPolicy", + "version": "0.0.1" + }, + "UUID": "51645b2f-19ab-3792-8088-a2b0eab9a75b", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtPolicy:0.0.1\"" + } + }, + { + "key": { + "name": "VPNCustomerCtxtTriggerEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtTriggerEvent", + "version": "0.0.1" + }, + "UUID": "dd7ea64d-863e-3194-8eee-e4aab7af1454", + "description": "Generated description for concept referred to by key \"VPNCustomerCtxtTriggerEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNDatatypes", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDatatypes", + "version": "0.0.1" + }, + "UUID": "45ec61a2-39c6-3544-9d48-49e29b60daa7", + "description": "Generated description for concept referred to by key \"VPNDatatypes:0.0.1\"" + } + }, + { + "key": { + "name": "VPNDecideEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideEvent", + "version": "0.0.1" + }, + "UUID": "c8721fa3-ff74-3222-b2e4-9824b8daf7bb", + "description": "Generated description for concept referred to by key \"VPNDecideEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNDecidePriorityTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecidePriorityTask", + "version": "0.0.1" + }, + "UUID": "cb2a893a-7719-3208-9952-a3fa3565cbb4", + "description": "Generated description for concept referred to by key \"VPNDecidePriorityTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNDecideSLATask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideSLATask", + "version": "0.0.1" + }, + "UUID": "bef3b2b0-5575-3b50-a1bc-dd05541cb800", + "description": "Generated description for concept referred to by key \"VPNDecideSLATask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNDecideSolvedTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideSolvedTask", + "version": "0.0.1" + }, + "UUID": "137f8cd1-0f33-3c03-88a5-d0408fe0c26a", + "description": "Generated description for concept referred to by key \"VPNDecideSolvedTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideTask", + "version": "0.0.1" + }, + "UUID": "dc647231-a4d6-307e-bd42-d32fa0a2c2c5", + "description": "Generated description for concept referred to by key \"VPNDecideTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNEstablishEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNEstablishEvent", + "version": "0.0.1" + }, + "UUID": "a5ec4ca5-b0ce-3098-afc2-61de501e35bd", + "description": "Generated description for concept referred to by key \"VPNEstablishEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNEstablishTask", + "version": "0.0.1" + }, + "UUID": "e5b00ad5-92d8-3ffc-93e0-ddd1c02e584f", + "description": "Generated description for concept referred to by key \"VPNEstablishTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNEvents", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNEvents", + "version": "0.0.1" + }, + "UUID": "07c2931d-9011-3d85-bca6-c10d43856f60", + "description": "Generated description for concept referred to by key \"VPNEvents:0.0.1\"" + } + }, + { + "key": { + "name": "VPNKeyInformation", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNKeyInformation", + "version": "0.0.1" + }, + "UUID": "c2516499-a76d-3526-a6ee-d1d93c598931", + "description": "Generated description for concept referred to by key \"VPNKeyInformation:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLink", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLink", + "version": "0.0.1" + }, + "UUID": "27e97f3a-8b39-3ae7-ac26-af9370cccd43", + "description": "Generated description for concept referred to by key \"VPNLink:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + "UUID": "5a234e2d-9efd-336f-b26d-1f909cdb44be", + "description": "Generated description for concept referred to by key \"VPNLinkAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtActEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtActEvent", + "version": "0.0.1" + }, + "UUID": "20fa2bc5-366a-3127-bbbf-c3408e30196d", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtActEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtActTask", + "version": "0.0.1" + }, + "UUID": "63d61114-538c-3c02-8bc6-d0214dc09824", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtActTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtDecideEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtDecideEvent", + "version": "0.0.1" + }, + "UUID": "42ecba03-b4cb-3a8f-8c0b-cc63da5eb28a", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtDecideEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtDecideTask", + "version": "0.0.1" + }, + "UUID": "ade15880-f26b-32fe-accc-58016cc8bdc5", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtDecideTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtEstablishEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtEstablishEvent", + "version": "0.0.1" + }, + "UUID": "6e10e999-4c93-34b2-8723-434a47e80d24", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtEstablishEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtEstablishTask", + "version": "0.0.1" + }, + "UUID": "b3e9531b-162c-3b07-b47f-4013380e59e8", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtEstablishTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtMatchEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtMatchEvent", + "version": "0.0.1" + }, + "UUID": "fc2a579b-2424-3a20-9e48-b7fcc72259a7", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtMatchEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtMatchTask", + "version": "0.0.1" + }, + "UUID": "48c628d8-d660-37ec-8d24-c17c46ad3109", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtMatchTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtPolicy", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtPolicy", + "version": "0.0.1" + }, + "UUID": "d3818863-91dc-3ed6-9087-c4cd76707003", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtPolicy:0.0.1\"" + } + }, + { + "key": { + "name": "VPNLinkCtxtTriggerEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtTriggerEvent", + "version": "0.0.1" + }, + "UUID": "7af8f4e2-c662-3ccf-a77a-6dd2aafdd773", + "description": "Generated description for concept referred to by key \"VPNLinkCtxtTriggerEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNMatchEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNMatchEvent", + "version": "0.0.1" + }, + "UUID": "e9a25835-f032-3f6f-ae01-8b043cae3680", + "description": "Generated description for concept referred to by key \"VPNMatchEvent:0.0.1\"" + } + }, + { + "key": { + "name": "VPNMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNMatchTask", + "version": "0.0.1" + }, + "UUID": "e5eb173b-18fd-34d2-924c-d4bc00979e86", + "description": "Generated description for concept referred to by key \"VPNMatchTask:0.0.1\"" + } + }, + { + "key": { + "name": "VPNPolicies", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNPolicies", + "version": "0.0.1" + }, + "UUID": "1b333371-46d0-3ae7-9da9-d2f7b3525fbc", + "description": "Generated description for concept referred to by key \"VPNPolicies:0.0.1\"" + } + }, + { + "key": { + "name": "VPNPolicy", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNPolicy", + "version": "0.0.1" + }, + "UUID": "5c1491a5-01ae-37cd-aa57-7aac775b6f56", + "description": "Generated description for concept referred to by key \"VPNPolicy:0.0.1\"" + } + }, + { + "key": { + "name": "VPNPolicyModelJava", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNPolicyModelJava", + "version": "0.0.1" + }, + "UUID": "39d0dbe2-5fc1-3171-b429-551c25d92003", + "description": "Generated description for concept referred to by key \"VPNPolicyModelJava:0.0.1\"" + } + }, + { + "key": { + "name": "VPNProblem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNProblem", + "version": "0.0.1" + }, + "UUID": "0bcf2824-9a3a-394b-981f-1b6b51982a9f", + "description": "Generated description for concept referred to by key \"VPNProblem:0.0.1\"" + } + }, + { + "key": { + "name": "VPNProblemAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNProblemAlbum", + "version": "0.0.1" + }, + "UUID": "ea4e8801-7391-3cb4-a93a-1dfd51ec392c", + "description": "Generated description for concept referred to by key \"VPNProblemAlbum:0.0.1\"" + } + }, + { + "key": { + "name": "VPNTasks", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNTasks", + "version": "0.0.1" + }, + "UUID": "26cae2a3-9eba-3b73-b91c-ef70806cf158", + "description": "Generated description for concept referred to by key \"VPNTasks:0.0.1\"" + } + }, + { + "key": { + "name": "VPNTriggerEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNTriggerEvent", + "version": "0.0.1" + }, + "UUID": "61759db7-3539-307a-9310-9f3870dab1d6", + "description": "Generated description for concept referred to by key \"VPNTriggerEvent:0.0.1\"" + } + }, + { + "key": { + "name": "YtdDT", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "YtdDT", + "version": "0.0.1" + }, + "UUID": "7bda6f7c-8469-3aea-a075-c1d4acc2a1c8", + "description": "Generated description for concept referred to by key \"YtdDT:0.0.1\"" + } + } + ] + } + }, + "policies": { + "key": { + "name": "VPNPolicies", + "version": "0.0.1" + }, + "policyMap": { + "entry": [ + { + "key": { + "name": "VPNCustomerCtxtPolicy", + "version": "0.0.1" + }, + "value": { + "policyKey": { + "name": "VPNCustomerCtxtPolicy", + "version": "0.0.1" + }, + "template": "MEDA", + "state": { + "entry": [ + { + "key": "Act", + "value": { + "stateKey": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + }, + "trigger": { + "name": "VPNCustomerCtxtDecideEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Act_NULL", + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + }, + "outgoingEvent": { + "name": "VPNCustomerCtxtActEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "NULL", + "parentKeyVersion": "0.0.0", + "parentLocalName": "NULL", + "localName": "NULL" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNCustomerCtxtActTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNCustomerCtxtActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "VPNCustomerCtxtActTask_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + } + ] + } + } + }, + { + "key": "Decide", + "value": { + "stateKey": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + }, + "trigger": { + "name": "VPNCustomerCtxtEstablishEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Decide_Act", + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + }, + "outgoingEvent": { + "name": "VPNCustomerCtxtDecideEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNCustomerCtxtDecideTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNCustomerCtxtDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "VPNCustomerCtxtDecideTask_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + } + ] + } + } + }, + { + "key": "Establish", + "value": { + "stateKey": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + }, + "trigger": { + "name": "VPNCustomerCtxtMatchEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Establish_Decide", + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + }, + "outgoingEvent": { + "name": "VPNCustomerCtxtEstablishEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNCustomerCtxtEstablishTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNCustomerCtxtEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "VPNCustomerCtxtEstablishTask_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + } + ] + } + } + }, + { + "key": "Match", + "value": { + "stateKey": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Match" + }, + "trigger": { + "name": "VPNCustomerCtxtTriggerEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Match_Establish", + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + }, + "outgoingEvent": { + "name": "VPNCustomerCtxtMatchEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNCustomerCtxtMatchTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNCustomerCtxtMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "VPNCustomerCtxtMatchTask_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNCustomerCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + } + ] + } + } + } + ] + }, + "firstState": "Match" + } + }, + { + "key": { + "name": "VPNLinkCtxtPolicy", + "version": "0.0.1" + }, + "value": { + "policyKey": { + "name": "VPNLinkCtxtPolicy", + "version": "0.0.1" + }, + "template": "MEDA", + "state": { + "entry": [ + { + "key": "Act", + "value": { + "stateKey": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + }, + "trigger": { + "name": "VPNLinkCtxtDecideEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Act_NULL", + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + }, + "outgoingEvent": { + "name": "VPNLinkCtxtActEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "NULL", + "parentKeyVersion": "0.0.0", + "parentLocalName": "NULL", + "localName": "NULL" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNLinkCtxtActTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNLinkCtxtActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "VPNLinkCtxtActTask_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + } + ] + } + } + }, + { + "key": "Decide", + "value": { + "stateKey": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + }, + "trigger": { + "name": "VPNLinkCtxtEstablishEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Decide_Act", + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + }, + "outgoingEvent": { + "name": "VPNLinkCtxtDecideEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNLinkCtxtDecideTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNLinkCtxtDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "VPNLinkCtxtDecideTask_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + } + ] + } + } + }, + { + "key": "Establish", + "value": { + "stateKey": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + }, + "trigger": { + "name": "VPNLinkCtxtMatchEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Establish_Decide", + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + }, + "outgoingEvent": { + "name": "VPNLinkCtxtEstablishEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNLinkCtxtEstablishTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNLinkCtxtEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "VPNLinkCtxtEstablishTask_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + } + ] + } + } + }, + { + "key": "Match", + "value": { + "stateKey": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Match" + }, + "trigger": { + "name": "VPNLinkCtxtTriggerEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Match_Establish", + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + }, + "outgoingEvent": { + "name": "VPNLinkCtxtMatchEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "NULL", + "logicFlavour": "UNDEFINED", + "logic": "" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNLinkCtxtMatchTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNLinkCtxtMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "VPNLinkCtxtMatchTask_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNLinkCtxtPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + } + ] + } + } + } + ] + }, + "firstState": "Match" + } + }, + { + "key": { + "name": "VPNPolicy", + "version": "0.0.1" + }, + "value": { + "policyKey": { + "name": "VPNPolicy", + "version": "0.0.1" + }, + "template": "MEDA", + "state": { + "entry": [ + { + "key": "Act", + "value": { + "stateKey": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + }, + "trigger": { + "name": "VPNDecideEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Act_NULL", + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + }, + "outgoingEvent": { + "name": "VPNActEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "NULL", + "parentKeyVersion": "0.0.0", + "parentLocalName": "NULL", + "localName": "NULL" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "TaskSelectionLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask)\nlogger.debug(subject.id + \":\" + subject.stateName + \", using default task\" + subject.defaultTaskKey);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNActTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "VPNActTask_DIRECT_Act_NULL" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Act", + "localName": "Act_NULL" + } + } + } + ] + } + } + }, + { + "key": "Decide", + "value": { + "stateKey": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + }, + "trigger": { + "name": "VPNEstablishEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Decide_Act", + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + }, + "outgoingEvent": { + "name": "VPNDecideEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Act" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "TaskSelectionLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nlogger.debug(inFields);\n\nString incomingLink = inFields[\"Link\"];\nString incomingProblemStatus = inFields[\"ProblemStatus\"];\n\n/* 0 label=VPNDecideTask */\n\nif (incomingLink.equals(\"L09\") && incomingProblemStatus.equals(\"NEWPROBLEM\")) {\n\tSystem.err.println(\"l9 NEWPROBLEM\");\n\tsubject.getTaskKey(\"VPNDecideSLATask\").copyTo(selectedTask);\n\treturn true;\n}\nelse if (incomingLink.equals(\"L09\") && inFields[\"ProblemStatus\"].equals(\"NEWSOLVED\")) {\n\tSystem.err.println(\"l9 NEWSOLVED\");\n\tsubject.getTaskKey(\"VPNDecideSolvedTask\").copyTo(selectedTask);\n\treturn true;\n}\nelse if (incomingLink.equals(\"L10\") && incomingProblemStatus.equals(\"NEWPROBLEM\")) {\n\tSystem.err.println(\"l10 NEWPROBLEM\");\n\tsubject.getTaskKey(\"VPNDecidePriorityTask\").copyTo(selectedTask);\n\treturn true;\n}\nelse if (incomingLink.equals(\"L10\") && incomingProblemStatus.equals(\"NEWSOLVED\")) {\n\tSystem.err.println(\"l10 NEWSOLVED\");\n\tsubject.getTaskKey(\"VPNDecideSolvedTask\").copyTo(selectedTask);\n\treturn true;\n}\nelse {\n\tsubject.defaultTaskKey.copyTo(selectedTask);\n\treturn true;\n}" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNDecideTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNDecidePriorityTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "VPNDecidePriorityTask_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "VPNDecideSLATask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "VPNDecideSLATask_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "VPNDecideSolvedTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "VPNDecideSolvedTask_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + }, + { + "key": { + "name": "VPNDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "VPNDecideTask_DIRECT_Decide_Act" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Decide", + "localName": "Decide_Act" + } + } + } + ] + } + } + }, + { + "key": "Establish", + "value": { + "stateKey": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + }, + "trigger": { + "name": "VPNMatchEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Establish_Decide", + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + }, + "outgoingEvent": { + "name": "VPNEstablishEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Decide" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "TaskSelectionLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask)\nlogger.debug(subject.id + \":\" + subject.stateName + \", using default task\" + subject.defaultTaskKey);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNEstablishTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "VPNEstablishTask_DIRECT_Establish_Decide" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Establish", + "localName": "Establish_Decide" + } + } + } + ] + } + } + }, + { + "key": "Match", + "value": { + "stateKey": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Match" + }, + "trigger": { + "name": "VPNTriggerEvent", + "version": "0.0.1" + }, + "stateOutputs": { + "entry": [ + { + "key": "Match_Establish", + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + }, + "outgoingEvent": { + "name": "VPNMatchEvent", + "version": "0.0.1" + }, + "nextState": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "NULL", + "localName": "Establish" + } + } + } + ] + }, + "contextAlbumReference": [], + "taskSelectionLogic": { + "key": "TaskSelectionLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.stateName);\nsubject.defaultTaskKey.copyTo(selectedTask)\nlogger.debug(subject.id + \":\" + subject.stateName + \", using default task\" + subject.defaultTaskKey);\nreturn true;" + }, + "stateFinalizerLogicMap": { + "entry": [] + }, + "defaultTask": { + "name": "VPNMatchTask", + "version": "0.0.1" + }, + "taskReferences": { + "entry": [ + { + "key": { + "name": "VPNMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "VPNMatchTask_DIRECT_Match_Establish" + }, + "outputType": "DIRECT", + "output": { + "parentKeyName": "VPNPolicy", + "parentKeyVersion": "0.0.1", + "parentLocalName": "Match", + "localName": "Match_Establish" + } + } + } + ] + } + } + } + ] + }, + "firstState": "Match" + } + } + ] + } + }, + "tasks": { + "key": { + "name": "VPNTasks", + "version": "0.0.1" + }, + "taskMap": { + "entry": [ + { + "key": { + "name": "VPNActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNActTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Action", + "value": { + "key": "Action", + "fieldSchemaKey": { + "name": "Action", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "CustomerMap", + "value": { + "key": "CustomerMap", + "fieldSchemaKey": { + "name": "CustomerMap", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkMap", + "value": { + "key": "LinkMap", + "fieldSchemaKey": { + "name": "LinkMap", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.onap.policy.apex.domains.vpn.java.concepts.VPNLink;\nimport org.onap.policy.apex.domains.vpn.java.concepts.VPNLinkMap;\nimport org.onap.policy.apex.domains.vpn.java.concepts.VPNCustomer;\nimport org.onap.policy.apex.domains.vpn.java.concepts.VPNCustomerMap;\n\nlogger.debug(subject.id + \":\" + subject.taskName);\n\nSystem.err.println(inFields);\nlogger.debug(subject.id);\n\nSystem.err.println(\"*** Links ***\");\nfor (VPNLink link: getContextAlbum(\"VPNLinkAlbum\").values()) {\n System.err.println(link.getName() + \"\\t\" + link.getActive());\n}\n\nSystem.err.println(\"*** Customers ***\");\nfor (VPNCustomer customer: getContextAlbum(\"VPNCustomerAlbum\").values()) {\n System.err.println(\n \t customer.getName() + \"\\t\" +\n\t\t customer.getSlaDT() + \"\\t\" +\n\t\t customer.getYtdDT() + \"\\t\" + \n\t\t customer.getLinksInUseAsString());\n}\n\nVPNLinkMap linkMap = new VPNLinkMap();\nlinkMap.putAll(getContextAlbum(\"VPNLinkAlbum\"));\noutFields[\"LinkMap\"] = linkMap;\n\nVPNCustomerMap customerMap = new VPNCustomerMap();\ncustomerMap.putAll(getContextAlbum(\"VPNCustomerAlbum\"));\noutFields[\"CustomerMap\"] = customerMap;\n\nSystem.err.println(\"outFields: \" + outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtActTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.onap.policy.apex.domains.vpn.java.concepts.VPNCustomer;\nimport org.onap.policy.apex.domains.vpn.java.concepts.VPNLink;\n\nlogger.debug(subject.id);\nSystem.err.println(inFields);\n\nString vpnCustomerName = inFields[\"CustomerName\"];\nVPNCustomer vpnCustomer = getContextAlbum(\"VPNCustomerAlbum\").get(vpnCustomerName);\nif (vpnCustomer == null) {\n vpnCustomer = new VPNCustomer(vpnCustomerName);\n\t getContextAlbum(\"VPNCustomerAlbum\").put(vpnCustomerName, vpnCustomer);\n}\nvpnCustomer.setSlaDT(inFields[\"SlaDT\"]);\nvpnCustomer.setYtdDT(inFields[\"YtdDT\"]);\n\nfor (String usedLinkName: inFields[\"LinkList\"].split(\" \")) {\n\tVPNLink vpnLink = getContextAlbum(\"VPNLinkAlbum\").get(usedLinkName);\n\tif (vpnLink != null) {\n\t\tvpnCustomer.getLinksInUse().add(vpnLink);\n\t}\n\telse {\n\t\tSystem.err.println(\"unknown link \\\\\"\" + usedLinkName + \"\\\\\" specified on customer \\\\\"\" + vpnCustomerName + \"\\\\\"\");\n\t}\n}\n\nSystem.err.println(\"*** Customers ***\");\nfor (VPNCustomer customer: getContextAlbum(\"VPNCustomerAlbum\").values()) {\n System.err.println(\n \t customer.getName() + \"\\t\" +\n\t\t customer.getSlaDT() + \"\\t\" +\n\t\t customer.getYtdDT() + \"\\t\" + \n\t\t customer.getLinksInUseAsString());\n}\n\noutFields[\"CustomerName\"] = vpnCustomer.getName();\noutFields[\"LinkList\"] = vpnCustomer.getLinksInUseAsString();\noutFields[\"SlaDT\"] = vpnCustomer.getSlaDT();\noutFields[\"YtdDT\"] = vpnCustomer.getYtdDT();\n\nSystem.err.println(\"outFields: \" + outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtDecideTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtEstablishTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtMatchTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNDecidePriorityTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecidePriorityTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Action", + "value": { + "key": "Action", + "fieldSchemaKey": { + "name": "Action", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.onap.policy.apex.domains.vpn.java.concepts.VPNCustomerArray;\n\nlogger.debug(subject.id + \":\" + subject.taskName);\n\nlogger.debug(\"VPNDecidePriorityTask execution logic-Praveen\");\nlogger.debug(inFields);\noutFields[\"Link\"] = inFields[\"Link\"];\noutFields[\"Action\"] = \"Disconnect customers based on Priority\";\n\nVPNCustomerArray affectedCustomersArray = new VPNCustomerArray();\naffectedCustomersArray.addCustomer(\"A\");\noutFields[\"AffectedCustomers\"] = affectedCustomersArray;\n\nSystem.err.println(\"outFields: \" + outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNDecideSLATask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideSLATask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Action", + "value": { + "key": "Action", + "fieldSchemaKey": { + "name": "Action", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.onap.policy.apex.domains.vpn.java.concepts.VPNCustomerArray;\nimport org.onap.policy.apex.domains.vpn.java.concepts.VPNCustomer;\n\nlogger.debug(subject.id + \":\" + subject.taskName);\n\nSystem.err.println(inFields);\n\noutFields[\"Link\"] = inFields[\"Link\"];\noutFields[\"Action\"] = \"Disconnect customers based on SLA Agreement\";\n\nVPNCustomerArray slaViolatedCustomerArray = new VPNCustomerArray();\n\nSystem.err.println(\"cust\\tslaDT\\tytdDT\");\nfor (VPNCustomer customer: getContextAlbum(\"VPNCustomerAlbum\").values()) {\n\tSystem.err.println(customer.getName() + \"\\t\" + customer.getSlaDT() + \"\\t\" + customer.getYtdDT());\n\n\tif (customer.getYtdDT() > customer.getSlaDT()) {\n\t\tslaViolatedCustomerArray.addCustomer(customer.getName());\n\t}\n}\n\nSystem.err.println(\"Customers whose SLAs are violated are:\" + slaViolatedCustomerArray.toString());\n\ninFields[\"AffectedCustomers\"].removeAll(slaViolatedCustomerArray.getCustomers());\noutFields[\"AffectedCustomers\"] = new VPNCustomerArray(inFields[\"AffectedCustomers\"].getCustomers());\n\nSystem.err.println(\"outFields: \" + outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNDecideSolvedTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideSolvedTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Action", + "value": { + "key": "Action", + "fieldSchemaKey": { + "name": "Action", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.onap.policy.apex.domains.vpn.java.concepts.VPNCustomer;\nimport org.onap.policy.apex.domains.vpn.java.concepts.VPNProblem;\n\nlogger.debug(subject.id + \":\" + subject.taskName);\n\nSystem.err.println(inFields);\noutFields[\"Action\"] = \"Rebuild VPN for customers\";\noutFields[\"Link\"] = inFields[\"Link\"];\noutFields[\"AffectedCustomers\"] = inFields[\"AffectedCustomers\"];\n\n/* Get the problem-link-object for this link */\nString incomingLink = inFields[\"Link\"];\n\nVPNProblem vpnProblem = getContextAlbum(\"VPNProblemAlbum\").get(incomingLink);\n\nif (null != vpnProblem) {\n /* Calculate the total down time from the problem-link-object */\n long linkDownTimeinSecs = (vpnProblem.getEndTime() - vpnProblem.getStartTime())/1000;\n /* Get customers from Policy context and add to ytdDT */\n for (VPNCustomer customer : vpnProblem.getAffectedCustomers()) {\n\t\tcustomer.setYtdDT(customer.getYtdDT() + linkDownTimeinSecs);\n }\n}\n\n/* Remove the problem-link-object */\ngetContextAlbum(\"VPNProblemAlbum\").remove(incomingLink);\n\nSystem.err.println(\"outFields: \" + outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Action", + "value": { + "key": "Action", + "fieldSchemaKey": { + "name": "Action", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNEstablishTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Status", + "value": { + "key": "Status", + "fieldSchemaKey": { + "name": "Status", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "StatusChanged", + "value": { + "key": "StatusChanged", + "fieldSchemaKey": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.onap.policy.apex.domains.vpn.java.concepts.VPNLink;\nimport org.onap.policy.apex.domains.vpn.java.concepts.VPNCustomer;\nimport org.onap.policy.apex.domains.vpn.java.concepts.VPNProblem;\nimport org.onap.policy.apex.domains.vpn.java.concepts.VPNCustomerArray;\n\nlogger.debug(subject.id + \":\" + subject.taskName);\n\nSystem.err.println(inFields);\nString vpnLinkName = inFields[\"Link\"];\n\nVPNLink vpnLink = getContextAlbum(\"VPNLinkAlbum\").get(vpnLinkName);\nVPNProblem vpnProblem = getContextAlbum(\"VPNProblemAlbum\").get(vpnLinkName);\n\nString incomingStatus = inFields[\"Status\"];\nBoolean incomingStatusChanged = (Boolean)inFields[\"StatusChanged\"];\n\nif (incomingStatus.equalsIgnoreCase(\"DOWN\")) {\n\tvpnLink.setActive(false);\n}\nelse {\n\tvpnLink.setActive(true);\n}\n\nlong now = System.currentTimeMillis();\n\nif (incomingStatusChanged == false) {\n\toutFields[\"Link\"] = vpnLinkName;\n\tif (incomingStatus.equalsIgnoreCase(\"UP\")) {\n\t\toutFields[\"ProblemStatus\"] = \"NOPROBLEM\";\n\t\toutFields[\"AffectedCustomers\"] = new VPNCustomerArray();\n\t}\n\telse if (incomingStatus.equalsIgnoreCase(\"DOWN\")) {\n\t\toutFields[\"ProblemStatus\"] = \"STILLPROBLEM\";\n\t\toutFields[\"AffectedCustomers\"] = new VPNCustomerArray(vpnProblem.getAffectedCustomers());\n\t}\n\telse {\n\t\tSystem.err.println(\"VpnEstablishLogic: Unsupported link type!!!\" + vpnLinkName + \" \" + incomingStatus);\n\t}\n}\nelse if (incomingStatusChanged == true) {\n\t/* indicates new problem or new solution */\n\tif\t(incomingStatus.equalsIgnoreCase(\"UP\")) {\n\t\t/* A link that was down is now up */\n\t\tif (vpnProblem != null) {\n\t\t\tvpnProblem.setEndTime(now);\n\t\t}\n\t\telse {\n\t\t\tSystem.err.println(\"VpnEstablishLogic: Link change to UP, but with no report of a previous problem!!!\" + vpnLinkName);\n\t\t}\n\t\toutFields[\"Link\"] = vpnLinkName;\n\t\toutFields[\"AffectedCustomers\"] = new VPNCustomerArray(vpnProblem.getAffectedCustomers());\n\t\toutFields[\"ProblemStatus\"] = \"NEWSOLVED\";\n\t}\n\telse if (incomingStatus.equalsIgnoreCase(\"DOWN\")) {\n\t\t/* A link that was up is now down */\n\t\tif (vpnProblem == null) {\n\t\t\tvpnProblem = new VPNProblem(vpnLinkName);\n\t\t\tvpnProblem.setStartTime(now);\n\n\t\t\tfor (VPNCustomer vpnCustomer : getContextAlbum(\"VPNCustomerAlbum\").values()) {\n\t\t\t\tif (vpnCustomer.getLinksInUse().contains(vpnLinkName)) {\n\t\t\t\t\tvpnProblem.add(vpnCustomer);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tgetContextAlbum(\"VPNProblemAlbum\").put(vpnLinkName, vpnProblem);\n\n\t\t\toutFields[\"Link\"] = vpnLinkName;\n\t\t\toutFields[\"AffectedCustomers\"] = new VPNCustomerArray(vpnProblem.getAffectedCustomers());\n\t\t\toutFields[\"ProblemStatus\"] = \"NEWPROBLEM\";\n\t\t}\n\t\telse {\n\t\t\tSystem.err.println(\"VpnEstablishLogic: Link change to DOWN, but with a report of a previous problem: \" + vpnLinkName + \" Not updating problem: \" + vpnProblem);\n\t\t\toutFields[\"Link\"] = vpnLinkName;\n\t\t\toutFields[\"AffectedCustomers\"] = new VPNCustomerArray(vpnProblem.getAffectedCustomers());\n\t\t\toutFields[\"ProblemStatus\"] = \"STILLPROBLEM\";\n\t\t}\n\t}\n\telse {\n\t\tSystem.err.println(\"VpnEstablishLogic: Unsupported link type!!!\" + vpnLinkName + \" \" + incomingStatus);\n\t}\n}\nelse {\n\tthrow new IllegalArgumentException(\"MatchEvent down time cannot be less than 0\");\n}\n\nSystem.err.println(\"outFields: \" + outFields);\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNLinkCtxtActTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtActTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.onap.policy.apex.domains.vpn.java.concepts.VPNLink;\n\nlogger.debug(subject.id);\nSystem.err.println(inFields);\n\nString vpnLinkName = inFields[\"Link\"];\nVPNLink vpnLink = getContextAlbum(\"VPNLinkAlbum\").get(vpnLinkName);\nif (vpnLink == null) {\n vpnLink = new VPNLink(vpnLinkName);\n getContextAlbum(\"VPNLinkAlbum\").put(vpnLinkName, vpnLink);\n}\nvpnLink.setActive(inFields[\"LinkUp\"]);\n\nSystem.err.println(\"*** Links ***\");\nfor (VPNLink link: getContextAlbum(\"VPNLinkAlbum\").values()) {\n System.err.println(link.getName() + \"\\t\" + link.getActive());\n}\n\noutFields[\"Link\"] = vpnLink.getName();\noutFields[\"LinkUp\"] = vpnLink.getActive();\nSystem.err.println(\"outFields: \" + outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNLinkCtxtDecideTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtDecideTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNLinkCtxtEstablishTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtEstablishTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNLinkCtxtMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtMatchTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "logger.debug(subject.id + \":\" + subject.taskName);\nlogger.debug(inFields);\nlogger.debug(outFields);\n\nreturn true;" + } + } + }, + { + "key": { + "name": "VPNMatchTask", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNMatchTask", + "version": "0.0.1" + }, + "inputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Status", + "value": { + "key": "Status", + "fieldSchemaKey": { + "name": "Status", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "outputFields": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Status", + "value": { + "key": "Status", + "fieldSchemaKey": { + "name": "Status", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "StatusChanged", + "value": { + "key": "StatusChanged", + "fieldSchemaKey": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "optional": false + } + } + ] + }, + "taskParameters": { + "entry": [] + }, + "contextAlbumReference": [ + { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + { + "name": "VPNProblemAlbum", + "version": "0.0.1" + } + ], + "taskLogic": { + "key": "TaskLogic", + "logicFlavour": "MVEL", + "logic": "import org.onap.policy.apex.domains.vpn.java.concepts.VPNLink;\n\nlogger.debug(subject.id + \":\" + subject.taskName);\nSystem.err.println(inFields);\n\nString vpnLinkName = inFields[\"Link\"];\nString vpnLinkStatus = inFields[\"Status\"];\n\nVPNLink vpnLink = getContextAlbum(\"VPNLinkAlbum\").get(vpnLinkName);\nif (vpnLink == null) {\n\tvpnLink = new VPNLink(vpnLinkName);\n\tgetContextAlbum(\"VPNLinkAlbum\").put(vpnLinkName, vpnLink);\n\tif (vpnLinkStatus.equalsIgnoreCase(\"DOWN\")) {\n\t\tvpnLink.setActive(true);\n\t}\n\telse {\n\t\tvpnLink.setActive(false);\n\t}\n}\n\nif (vpnLinkStatus.equalsIgnoreCase(\"DOWN\")) {\n\tif (vpnLinkName != null) {\n\t\tif (vpnLink.getActive()) {\n\t\t\toutFields[\"StatusChanged\"] = true;\n\t\t}\n\t\telse {\n\t\t\toutFields[\"StatusChanged\"] = false;\n\t\t}\n\t\toutFields[\"Link\"] = vpnLinkName;\n\t\toutFields[\"Status\"] = vpnLinkStatus;\n\t}\n\telse {\n\t\tSystem.err.println(\"match: trigger context error: link is null\");\n\t}\n}\nelse if (vpnLinkStatus.equalsIgnoreCase(\"UP\")) {\n\tif (vpnLinkName != null) {\n\t\tif (!vpnLink.getActive()) {\n\t\t\toutFields[\"StatusChanged\"] = true;\n\t\t}\n\t\telse {\n\t\t\toutFields[\"StatusChanged\"] = false;\n\t\t}\n\t\toutFields[\"Link\"] = vpnLinkName;\n\t\toutFields[\"Status\"] = vpnLinkStatus;\n\t}\n\telse {\n\t\tSystem.err.println(\"match: trigger context error: link is null\");\n\t}\n}\nelse {\n\tSystem.err.println(\"match: trigger context error: status neither UP nor DOWN\");\n}\n\nSystem.err.println(\"outFields: \" + outFields);\nreturn true;" + } + } + } + ] + } + }, + "events": { + "key": { + "name": "VPNEvents", + "version": "0.0.1" + }, + "eventMap": { + "entry": [ + { + "key": { + "name": "VPNActEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNActEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "CustomerMap", + "value": { + "key": "CustomerMap", + "fieldSchemaKey": { + "name": "CustomerMap", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkMap", + "value": { + "key": "LinkMap", + "fieldSchemaKey": { + "name": "LinkMap", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtActEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtActEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtDecideEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtDecideEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtEstablishEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtEstablishEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtMatchEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtMatchEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNCustomerCtxtTriggerEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerCtxtTriggerEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "CustomerName", + "value": { + "key": "CustomerName", + "fieldSchemaKey": { + "name": "CustomerName", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkList", + "value": { + "key": "LinkList", + "fieldSchemaKey": { + "name": "LinkList", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "SlaDT", + "value": { + "key": "SlaDT", + "fieldSchemaKey": { + "name": "SlaDT", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "YtdDT", + "value": { + "key": "YtdDT", + "fieldSchemaKey": { + "name": "YtdDT", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNDecideEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNDecideEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Action", + "value": { + "key": "Action", + "fieldSchemaKey": { + "name": "Action", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNEstablishEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNEstablishEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "AffectedCustomers", + "value": { + "key": "AffectedCustomers", + "fieldSchemaKey": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "ProblemStatus", + "value": { + "key": "ProblemStatus", + "fieldSchemaKey": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNLinkCtxtActEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtActEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNLinkCtxtDecideEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtDecideEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNLinkCtxtEstablishEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtEstablishEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNLinkCtxtMatchEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtMatchEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNLinkCtxtTriggerEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkCtxtTriggerEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "LinkUp", + "value": { + "key": "LinkUp", + "fieldSchemaKey": { + "name": "LinkUp", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNMatchEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNMatchEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Status", + "value": { + "key": "Status", + "fieldSchemaKey": { + "name": "Status", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "StatusChanged", + "value": { + "key": "StatusChanged", + "fieldSchemaKey": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + }, + { + "key": { + "name": "VPNTriggerEvent", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNTriggerEvent", + "version": "0.0.1" + }, + "nameSpace": "org.onap.policy.apex.domains.vpn.events", + "source": "Source", + "target": "Target", + "parameter": { + "entry": [ + { + "key": "Link", + "value": { + "key": "Link", + "fieldSchemaKey": { + "name": "Link", + "version": "0.0.1" + }, + "optional": false + } + }, + { + "key": "Status", + "value": { + "key": "Status", + "fieldSchemaKey": { + "name": "Status", + "version": "0.0.1" + }, + "optional": false + } + } + ] + } + } + } + ] + } + }, + "albums": { + "key": { + "name": "VPNContext", + "version": "0.0.1" + }, + "albums": { + "entry": [ + { + "key": { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomerAlbum", + "version": "0.0.1" + }, + "scope": "GLOBAL", + "isWritable": true, + "itemSchema": { + "name": "VPNCustomer", + "version": "0.0.1" + } + } + }, + { + "key": { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLinkAlbum", + "version": "0.0.1" + }, + "scope": "GLOBAL", + "isWritable": true, + "itemSchema": { + "name": "VPNLink", + "version": "0.0.1" + } + } + }, + { + "key": { + "name": "VPNProblemAlbum", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNProblemAlbum", + "version": "0.0.1" + }, + "scope": "GLOBAL", + "isWritable": true, + "itemSchema": { + "name": "VPNProblem", + "version": "0.0.1" + } + } + } + ] + } + }, + "schemas": { + "key": { + "name": "VPNDatatypes", + "version": "0.0.1" + }, + "schemas": { + "entry": [ + { + "key": { + "name": "Action", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Action", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "AffectedCustomers", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.domains.vpn.java.concepts.VPNCustomerArray" + } + }, + { + "key": { + "name": "CustomerMap", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "CustomerMap", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.domains.vpn.java.concepts.VPNCustomerMap" + } + }, + { + "key": { + "name": "CustomerName", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "CustomerName", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "Link", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Link", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "LinkList", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "LinkList", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "LinkMap", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "LinkMap", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.domains.vpn.java.concepts.VPNLinkMap" + } + }, + { + "key": { + "name": "LinkUp", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "LinkUp", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Boolean" + } + }, + { + "key": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "ProblemStatus", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "SlaDT", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "SlaDT", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Integer" + } + }, + { + "key": { + "name": "Status", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "Status", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.String" + } + }, + { + "key": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "StatusChanged", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Boolean" + } + }, + { + "key": { + "name": "VPNCustomer", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNCustomer", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.domains.vpn.java.concepts.VPNCustomer" + } + }, + { + "key": { + "name": "VPNLink", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNLink", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.domains.vpn.java.concepts.VPNLink" + } + }, + { + "key": { + "name": "VPNProblem", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "VPNProblem", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "org.onap.policy.apex.domains.vpn.java.concepts.VPNProblem" + } + }, + { + "key": { + "name": "YtdDT", + "version": "0.0.1" + }, + "value": { + "key": { + "name": "YtdDT", + "version": "0.0.1" + }, + "schemaFlavour": "Java", + "schemaDefinition": "java.lang.Integer" + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Context_AvroEventAlbum_file2file.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Context_AvroEventAlbum_file2file.json new file mode 100644 index 000000000..431b05a1e --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Context_AvroEventAlbum_file2file.json @@ -0,0 +1,51 @@ +{ + "engineServiceParameters": { + "name": "Context_JavaEventAlbum_Apex_Engine", + "version": "0.0.1", + "id": 101, + "instanceCount": 1, + "deploymentPort": 12550, + "policyModelFileName": "/dev/null", + "engineParameters": { + "executorParameters": { + "JAVASCRIPT": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.javascript.JavascriptExecutorParameters" + } + }, + "contextParameters": { + "parameterClassName": "org.onap.policy.apex.context.parameters.ContextParameters", + "schemaParameters": { + "Avro": { + "parameterClassName": "org.onap.policy.apex.plugins.context.schema.avro.AvroSchemaHelperParameters" + } + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/Context_AvroEventAlbum_EventOut.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/Context_AvroEventAlbum_EventIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Context_JavaEventAlbum_file2file.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Context_JavaEventAlbum_file2file.json new file mode 100644 index 000000000..54f1a9332 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Context_JavaEventAlbum_file2file.json @@ -0,0 +1,43 @@ +{ + "engineServiceParameters": { + "name": "Context_JavaEventAlbum_Apex_Engine", + "version": "0.0.1", + "id": 101, + "instanceCount": 1, + "deploymentPort": 12550, + "policyModelFileName": "/dev/null", + "engineParameters": { + "executorParameters": { + "JAVASCRIPT": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.javascript.JavascriptExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/Context_JavaEventAlbum_EventOut.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/Context_JavaEventAlbum_EventIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileFilteredInJsonEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileFilteredInJsonEvent.json new file mode 100644 index 000000000..507ae7d6f --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileFilteredInJsonEvent.json @@ -0,0 +1,44 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12545, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "inputZero": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "eventNameFilter": "^E[Vv][Ee][Nn][Tt][0-9]000$" + } + }, + "eventOutputParameters": { + "outputZero": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/Events0004Out.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileFilteredInOutJsonEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileFilteredInOutJsonEvent.json new file mode 100644 index 000000000..43e187a87 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileFilteredInOutJsonEvent.json @@ -0,0 +1,69 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12545, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "inputZero": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "eventNameFilter": "^E[Vv][Ee][Nn][Tt][0-9]000$" + }, + "inputOne": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "eventNameFilter": "^E[Vv][Ee][Nn][Tt][0-9]100$" + } + }, + "eventOutputParameters": { + "outputZero": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/Events0004Out.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "eventNameFilter": "^E[Vv][Ee][Nn][Tt][0-9]004$" + }, + "outputOne": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/Events0104Out.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "eventNameFilter": "^E[Vv][Ee][Nn][Tt][0-9]104$" + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileFilteredOutJsonEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileFilteredOutJsonEvent.json new file mode 100644 index 000000000..e5cd23b03 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileFilteredOutJsonEvent.json @@ -0,0 +1,56 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12545, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "inputZero": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventOutputParameters": { + "outputZero": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/Events0004Out.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "eventNameFilter": "^E[Vv][Ee][Nn][Tt][0-9]004$" + }, + "outputOne": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/Events0104Out.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "eventNameFilter": "^E[Vv][Ee][Nn][Tt][0-9]104$" + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileJsonEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileJsonEvent.json new file mode 100644 index 000000000..a7a321039 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileJsonEvent.json @@ -0,0 +1,43 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12545, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsOut.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileXmlEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileXmlEvent.json new file mode 100644 index 000000000..5cca6d604 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2FileXmlEvent.json @@ -0,0 +1,45 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12546, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsOut.xmlfile" + } + }, + "eventProtocolParameters": { + "eventProtocol": "XML", + "parameterClassName": "org.onap.policy.apex.plugins.event.protocol.xml.XMLEventProtocolParameters" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsIn.xmlfile" + } + }, + "eventProtocolParameters": { + "eventProtocol": "XML", + "parameterClassName": "org.onap.policy.apex.plugins.event.protocol.xml.XMLEventProtocolParameters" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventBadHTTPMethod.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventBadHTTPMethod.json new file mode 100644 index 000000000..b7540f943 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventBadHTTPMethod.json @@ -0,0 +1,45 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTCLIENT", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restclient.RESTClientCarrierTechnologyParameters", + "parameters": { + "url": "http://localhost:32801/TestFile2Rest/apex/event/PutEvent", + "httpMethod": "DELETE" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventBadURL.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventBadURL.json new file mode 100644 index 000000000..99856932e --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventBadURL.json @@ -0,0 +1,44 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTCLIENT", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restclient.RESTClientCarrierTechnologyParameters", + "parameters": { + "url": "http://localhost:32801/TestFile2Rest/apex/event/Bad" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventNoURL.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventNoURL.json new file mode 100644 index 000000000..8c00885e5 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventNoURL.json @@ -0,0 +1,41 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTCLIENT", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restclient.RESTClientCarrierTechnologyParameters" + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventPost.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventPost.json new file mode 100644 index 000000000..1a1a189a4 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventPost.json @@ -0,0 +1,44 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTCLIENT", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restclient.RESTClientCarrierTechnologyParameters", + "parameters": { + "url": "http://localhost:32801/TestFile2Rest/apex/event/PostEvent" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventPostBadResponse.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventPostBadResponse.json new file mode 100644 index 000000000..fda83d7a6 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventPostBadResponse.json @@ -0,0 +1,44 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTCLIENT", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restclient.RESTClientCarrierTechnologyParameters", + "parameters": { + "url": "http://localhost:32801/TestFile2Rest/apex/event/PostEventBadResponse" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventPut.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventPut.json new file mode 100644 index 000000000..990e08f17 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/File2RESTJsonEventPut.json @@ -0,0 +1,45 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTCLIENT", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restclient.RESTClientCarrierTechnologyParameters", + "parameters": { + "url": "http://localhost:32801/TestFile2Rest/apex/event/PutEvent", + "httpMethod": "PUT" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/JMS2JMSJsonEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/JMS2JMSJsonEvent.json new file mode 100644 index 000000000..6e9405576 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/JMS2JMSJsonEvent.json @@ -0,0 +1,59 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12553, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "JMS", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.jms.JMSCarrierTechnologyParameters", + "parameters": { + "initialContextFactory": "org.onap.policy.apex.apps.uservice.test.adapt.jms.TestInitialContextFactory", + "connectionFactory": "ConnectionFactory", + "providerURL": "remote://localhost:5445", + "securityPrincipal": "guest", + "securityCredentials": "IAmAGuest", + "producerTopic": "jms/topic/apexOut", + "objectMessageSending": "false" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JMSTEXT", + "parameterClassName": "org.onap.policy.apex.plugins.event.protocol.jms.JMSTextEventProtocolParameters" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "JMS", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.jms.JMSCarrierTechnologyParameters", + "parameters": { + "initialContextFactory": "org.onap.policy.apex.apps.uservice.test.adapt.jms.TestInitialContextFactory", + "connectionFactory": "ConnectionFactory", + "providerURL": "remote://localhost:5445", + "securityPrincipal": "guest", + "securityCredentials": "IAmAGuest", + "consumerTopic": "jms/topic/apexIn" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JMSTEXT", + "parameterClassName": "org.onap.policy.apex.plugins.event.protocol.jms.JMSTextEventProtocolParameters" + } + } + } +} + diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/JMS2JMSObjectEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/JMS2JMSObjectEvent.json new file mode 100644 index 000000000..9a8aed39b --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/JMS2JMSObjectEvent.json @@ -0,0 +1,58 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12553, + "policyModelFileName": "src/test/resources/policymodels/JMSTestModel.json", + "engineParameters": { + "executorParameters": { + "JAVASCRIPT": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.javascript.JavascriptExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "JMS", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.jms.JMSCarrierTechnologyParameters", + "parameters": { + "initialContextFactory": "org.onap.policy.apex.apps.uservice.test.adapt.jms.TestInitialContextFactory", + "connectionFactory": "ConnectionFactory", + "providerURL": "remote://localhost:5445", + "securityPrincipal": "guest", + "securityCredentials": "IAmAGuest", + "producerTopic": "jms/topic/apexOut" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JMSOBJECT", + "parameterClassName": "org.onap.policy.apex.plugins.event.protocol.jms.JMSObjectEventProtocolParameters" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "JMS", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.jms.JMSCarrierTechnologyParameters", + "parameters": { + "initialContextFactory": "org.onap.policy.apex.apps.uservice.test.adapt.jms.TestInitialContextFactory", + "connectionFactory": "ConnectionFactory", + "providerURL": "remote://localhost:5445", + "securityPrincipal": "guest", + "securityCredentials": "IAmAGuest", + "consumerTopic": "jms/topic/apexIn" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JMSOBJECT", + "parameterClassName": "org.onap.policy.apex.plugins.event.protocol.jms.JMSObjectEventProtocolParameters" + } + } + } +} + diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Kafka2KafkaJsonEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Kafka2KafkaJsonEvent.json new file mode 100644 index 000000000..974e22b51 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Kafka2KafkaJsonEvent.json @@ -0,0 +1,63 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12547, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "KAFKA", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.kafka.KAFKACarrierTechnologyParameters", + "parameters": { + "bootstrapServers": "localhost:39902", + "acks": "all", + "retries": 0, + "batchSize": 16384, + "lingerTime": 1, + "bufferMemory": 33554432, + "producerTopic": "apex-out-json", + "keySerializer": "org.apache.kafka.common.serialization.StringSerializer", + "valueSerializer": "org.apache.kafka.common.serialization.StringSerializer" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "KAFKA", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.kafka.KAFKACarrierTechnologyParameters", + "parameters": { + "bootstrapServers": "localhost:39902", + "groupId": "apex-group-id", + "enableAutoCommit": true, + "autoCommitTime": 1000, + "sessionTimeout": 30000, + "consumerPollTime": 100, + "consumerTopicList": [ + "apex-in-json" + ], + "keyDeserializer": "org.apache.kafka.common.serialization.StringDeserializer", + "valueDeserializer": "org.apache.kafka.common.serialization.StringDeserializer" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Kafka2KafkaXmlEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Kafka2KafkaXmlEvent.json new file mode 100644 index 000000000..916b7caf7 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Kafka2KafkaXmlEvent.json @@ -0,0 +1,65 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 3, + "deploymentPort": 12548, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "KAFKA", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.kafka.KAFKACarrierTechnologyParameters", + "parameters": { + "bootstrapServers": "localhost:39902", + "acks": "all", + "retries": 0, + "batchSize": 16384, + "lingerTime": 1, + "bufferMemory": 33554432, + "producerTopic": "apex-out-xml", + "keySerializer": "org.apache.kafka.common.serialization.StringSerializer", + "valueSerializer": "org.apache.kafka.common.serialization.StringSerializer" + } + }, + "eventProtocolParameters": { + "eventProtocol": "XML", + "parameterClassName": "org.onap.policy.apex.plugins.event.protocol.xml.XMLEventProtocolParameters" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "KAFKA", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.kafka.KAFKACarrierTechnologyParameters", + "parameters": { + "bootstrapServers": "localhost:39902", + "groupId": "apex-group-id", + "enableAutoCommit": true, + "autoCommitTime": 1000, + "sessionTimeout": 30000, + "consumerPollTime": 100, + "consumerTopicList": [ + "apex-in-xml" + ], + "keyDeserializer": "org.apache.kafka.common.serialization.StringDeserializer", + "valueDeserializer": "org.apache.kafka.common.serialization.StringDeserializer" + } + }, + "eventProtocolParameters": { + "eventProtocol": "XML", + "parameterClassName": "org.onap.policy.apex.plugins.event.protocol.xml.XMLEventProtocolParameters" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/LBPolicy_ExecModel_file2kafka.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/LBPolicy_ExecModel_file2kafka.json new file mode 100644 index 000000000..f98a853f6 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/LBPolicy_ExecModel_file2kafka.json @@ -0,0 +1,52 @@ +{ + "engineServiceParameters": { + "name": "SONOM_LoadBalancing_Apex_Engine", + "version": "0.0.1", + "id": 102, + "instanceCount": 1, + "deploymentPort": 12549, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMvel.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "KAFKA", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.kafka.KAFKACarrierTechnologyParameters", + "parameters": { + "bootstrapServers": "localhost:9092", + "acks": "all", + "retries": 0, + "batchSize": 16384, + "lingerTime": 1, + "bufferMemory": 33554432, + "producerTopic": "apex-out", + "keySerializer": "org.apache.kafka.common.serialization.StringSerializer", + "valueSerializer": "org.apache.kafka.common.serialization.StringSerializer" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/SampleLBPolicyEventIn.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEmptyEvents.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEmptyEvents.json new file mode 100644 index 000000000..8e77e7d25 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEmptyEvents.json @@ -0,0 +1,44 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTCLIENT", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restclient.RESTClientCarrierTechnologyParameters", + "parameters": { + "url": "http://localhost:32801/TestRest2File/apex/event/GetEmptyEvent" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsOut.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEvent.json new file mode 100644 index 000000000..849a83eca --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEvent.json @@ -0,0 +1,44 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTCLIENT", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restclient.RESTClientCarrierTechnologyParameters", + "parameters": { + "url": "http://localhost:32801/TestRest2File/apex/event/GetEvent" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsOut.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventBadHTTPMethod.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventBadHTTPMethod.json new file mode 100644 index 000000000..86f14b024 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventBadHTTPMethod.json @@ -0,0 +1,45 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTCLIENT", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restclient.RESTClientCarrierTechnologyParameters", + "parameters": { + "url": "http://localhost:32801/TestRest2File/apex/event/GetEvent", + "httpMethod": "POST" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsOut.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventBadResponse.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventBadResponse.json new file mode 100644 index 000000000..95c3fd5c3 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventBadResponse.json @@ -0,0 +1,44 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTCLIENT", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restclient.RESTClientCarrierTechnologyParameters", + "parameters": { + "url": "http://localhost:32801/TestRest2File/apex/event/GetEventBadResponse" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsOut.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventBadURL.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventBadURL.json new file mode 100644 index 000000000..f58e55bc4 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventBadURL.json @@ -0,0 +1,44 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTCLIENT", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restclient.RESTClientCarrierTechnologyParameters", + "parameters": { + "url": "http://localhost:32801/TestRest2File/apex/event/Bad" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsOut.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventNoURL.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventNoURL.json new file mode 100644 index 000000000..ff35e17be --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/REST2FileJsonEventNoURL.json @@ -0,0 +1,41 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTCLIENT", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restclient.RESTClientCarrierTechnologyParameters" + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "FILE", + "parameters": { + "fileName": "src/test/resources/events/EventsOut.json" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEvent.json new file mode 100644 index 000000000..180530ac7 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEvent.json @@ -0,0 +1,50 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true, + "host": "localhost", + "port": 23324 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstProducer", + "synchronousTimeout": 500 + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters" + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstConsumer", + "synchronousTimeout": 500 + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventConsumerNotSync.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventConsumerNotSync.json new file mode 100644 index 000000000..7cd558a51 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventConsumerNotSync.json @@ -0,0 +1,47 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true, + "host": "localhost", + "port": 23324 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters" + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstConsumer", + "synchronousTimeout": 500 + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventConsumerStandaloneNoHost.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventConsumerStandaloneNoHost.json new file mode 100644 index 000000000..72c94fd58 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventConsumerStandaloneNoHost.json @@ -0,0 +1,48 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstProducer", + "synchronousTimeout": 500 + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters" + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstConsumer", + "synchronousTimeout": 500 + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventConsumerStandaloneNoPort.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventConsumerStandaloneNoPort.json new file mode 100644 index 000000000..0ee99e2c9 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventConsumerStandaloneNoPort.json @@ -0,0 +1,49 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true, + "host": "localhost" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstProducer", + "synchronousTimeout": 500 + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters" + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstConsumer", + "synchronousTimeout": 500 + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventContextAvro.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventContextAvro.json new file mode 100644 index 000000000..7aabe00e7 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventContextAvro.json @@ -0,0 +1,58 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/VPNPolicyModelAvro.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + }, + "contextParameters": { + "parameterClassName": "org.onap.policy.apex.context.parameters.ContextParameters", + "schemaParameters": { + "Avro": { + "parameterClassName": "org.onap.policy.apex.plugins.context.schema.avro.AvroSchemaHelperParameters" + } + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true, + "host": "localhost", + "port": 23324 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstProducer", + "synchronousTimeout": 500 + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters" + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstConsumer", + "synchronousTimeout": 500 + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventContextJava.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventContextJava.json new file mode 100644 index 000000000..30b32da82 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventContextJava.json @@ -0,0 +1,58 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/VPNPolicyModelJava.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + }, + "contextParameters": { + "parameterClassName": "org.onap.policy.apex.context.parameters.ContextParameters", + "schemaParameters": { + "Avro": { + "parameterClassName": "org.onap.policy.apex.plugins.context.schema.avro.AvroSchemaHelperParameters" + } + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true, + "host": "localhost", + "port": 23324 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstProducer", + "synchronousTimeout": 500 + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters" + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstConsumer", + "synchronousTimeout": 500 + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventDivideByZero.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventDivideByZero.json new file mode 100644 index 000000000..1a5db11e8 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventDivideByZero.json @@ -0,0 +1,50 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVELDivideByZero.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true, + "host": "localhost", + "port": 23324 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstProducer", + "synchronousTimeout": 500 + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters" + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstConsumer", + "synchronousTimeout": 500 + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventMultiIn.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventMultiIn.json new file mode 100644 index 000000000..9975a443f --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventMultiIn.json @@ -0,0 +1,79 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true, + "host": "localhost", + "port": 23324 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstProducer", + "synchronousTimeout": 500 + }, + "SecondConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true, + "host": "localhost", + "port": 23325 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "SecondProducer", + "synchronousTimeout": 500 + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters" + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstConsumer", + "synchronousTimeout": 500 + }, + "SecondProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters" + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "SecondConsumer", + "synchronousTimeout": 500 + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerHost.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerHost.json new file mode 100644 index 000000000..c33570808 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerHost.json @@ -0,0 +1,53 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true, + "host": "localhost", + "port": 23324 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstProducer", + "synchronousTimeout": 500 + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "host": "localhost" + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstConsumer", + "synchronousTimeout": 500 + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerNotSync.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerNotSync.json new file mode 100644 index 000000000..1c0d005f6 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerNotSync.json @@ -0,0 +1,44 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true, + "host": "localhost", + "port": 29775 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters" + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerPort.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerPort.json new file mode 100644 index 000000000..4366c651a --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerPort.json @@ -0,0 +1,53 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true, + "host": "localhost", + "port": 23324 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstProducer", + "synchronousTimeout": 500 + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "port": 12345 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstConsumer", + "synchronousTimeout": 500 + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerStandalone.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerStandalone.json new file mode 100644 index 000000000..d0cf4eb11 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/RESTServerJsonEventProducerStandalone.json @@ -0,0 +1,53 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12561, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventInputParameters": { + "FirstConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true, + "host": "localhost", + "port": 23324 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstProducer", + "synchronousTimeout": 500 + } + }, + "eventOutputParameters": { + "FirstProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "RESTSERVER", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RESTServerCarrierTechnologyParameters", + "parameters": { + "standalone": true + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + }, + "synchronousMode": true, + "synchronousPeer": "FirstConsumer", + "synchronousTimeout": 500 + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsClientJsonEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsClientJsonEvent.json new file mode 100644 index 000000000..651a63b59 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsClientJsonEvent.json @@ -0,0 +1,47 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12552, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "WEBSOCKET", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.websocket.WEBSOCKETCarrierTechnologyParameters", + "parameters": { + "host": "localhost", + "port": 42453 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "WEBSOCKET", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.websocket.WEBSOCKETCarrierTechnologyParameters", + "parameters": { + "host": "localhost", + "port": 42451 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsClientXMLEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsClientXMLEvent.json new file mode 100644 index 000000000..c14bc0645 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsClientXMLEvent.json @@ -0,0 +1,49 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12553, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "WEBSOCKET", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.websocket.WEBSOCKETCarrierTechnologyParameters", + "parameters": { + "host": "localhost", + "port": 42453 + } + }, + "eventProtocolParameters": { + "eventProtocol": "XML", + "parameterClassName": "org.onap.policy.apex.plugins.event.protocol.xml.XMLEventProtocolParameters" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "WEBSOCKET", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.websocket.WEBSOCKETCarrierTechnologyParameters", + "parameters": { + "host": "localhost", + "port": 42451 + } + }, + "eventProtocolParameters": { + "eventProtocol": "XML", + "parameterClassName": "org.onap.policy.apex.plugins.event.protocol.xml.XMLEventProtocolParameters" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsServerJsonEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsServerJsonEvent.json new file mode 100644 index 000000000..c1fa11c30 --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsServerJsonEvent.json @@ -0,0 +1,47 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12554, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "WEBSOCKET", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.websocket.WEBSOCKETCarrierTechnologyParameters", + "parameters": { + "wsClient": false, + "port": 42452 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "WEBSOCKET", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.websocket.WEBSOCKETCarrierTechnologyParameters", + "parameters": { + "wsClient": false, + "port": 42450 + } + }, + "eventProtocolParameters": { + "eventProtocol": "JSON" + } + } + } +} diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsServerXMLEvent.json b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsServerXMLEvent.json new file mode 100644 index 000000000..878d7108a --- /dev/null +++ b/testsuites/integration/integration-uservice-test/src/test/resources/prodcons/Ws2WsServerXMLEvent.json @@ -0,0 +1,49 @@ +{ + "engineServiceParameters": { + "name": "MyApexEngine", + "version": "0.0.1", + "id": 45, + "instanceCount": 4, + "deploymentPort": 12555, + "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json", + "engineParameters": { + "executorParameters": { + "MVEL": { + "parameterClassName": "org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters" + } + } + } + }, + "eventOutputParameters": { + "aProducer": { + "carrierTechnologyParameters": { + "carrierTechnology": "WEBSOCKET", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.websocket.WEBSOCKETCarrierTechnologyParameters", + "parameters": { + "wsClient": false, + "port": 42452 + } + }, + "eventProtocolParameters": { + "eventProtocol": "XML", + "parameterClassName": "org.onap.policy.apex.plugins.event.protocol.xml.XMLEventProtocolParameters" + } + } + }, + "eventInputParameters": { + "aConsumer": { + "carrierTechnologyParameters": { + "carrierTechnology": "WEBSOCKET", + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.websocket.WEBSOCKETCarrierTechnologyParameters", + "parameters": { + "wsClient": false, + "port": 42450 + } + }, + "eventProtocolParameters": { + "eventProtocol": "XML", + "parameterClassName": "org.onap.policy.apex.plugins.event.protocol.xml.XMLEventProtocolParameters" + } + } + } +} -- cgit 1.2.3-korg