diff options
Diffstat (limited to 'testsuites/stability/src/main')
6 files changed, 15754 insertions, 342 deletions
diff --git a/testsuites/stability/src/main/resources/papsetup/setup_pap.sh b/testsuites/stability/src/main/resources/papsetup/setup_pap.sh index dc5e69e7..235728aa 100644 --- a/testsuites/stability/src/main/resources/papsetup/setup_pap.sh +++ b/testsuites/stability/src/main/resources/papsetup/setup_pap.sh @@ -1,6 +1,6 @@ #!/bin/bash # ============LICENSE_START======================================================= -# Copyright (c) 2019 Nordix Foundation. +# Copyright (c) 2019 - 2020 Nordix Foundation. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -21,9 +21,9 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" echo ${DIR} -if ["$#" -lt 2]; then - echo "PAP and MariaDB IPs should be passed as two parameters. PAP IP goes first." - exit 1 +if [ "$#" -lt 2 ]; then + echo "PAP and MariaDB IPs should be passed as two parameters. PAP IP goes first." + exit 1 else PAP=$1 echo "PAP IP: ${PAP}" @@ -31,4 +31,4 @@ else echo "MariaDB IP: ${MARIADB}" fi -docker run -p 9090:9090 -p 6969:6969 -e "PAP_HOST=${PAP}" -v ${DIR}/config/pap/bin/policy-pap.sh:/opt/app/policy/pap/bin/policy-pap.sh -v ${DIR}/config/pap/etc/defaultConfig.json:/opt/app/policy/pap/etc/defaultConfig.json --add-host mariadb:${MARIADB} --name policy-pap -d --rm nexus3.onap.org:10001/onap/policy-pap:2.0.0-SNAPSHOT-latest +docker run -p 9090:9090 -p 6969:6969 -e "PAP_HOST=${PAP}" -v ${DIR}/config/pap/bin/policy-pap.sh:/opt/app/policy/pap/bin/policy-pap.sh -v ${DIR}/config/pap/etc/defaultConfig.json:/opt/app/policy/pap/etc/defaultConfig.json --add-host mariadb:${MARIADB} --name policy-pap -d --rm nexus3.onap.org:10001/onap/policy-pap:2.2-SNAPSHOT-latest diff --git a/testsuites/stability/src/main/resources/simulatorsetup/config/pdp/OnapPfConfig.json b/testsuites/stability/src/main/resources/simulatorsetup/config/pdp/OnapPfConfig.json index de31d50f..337cf458 100644 --- a/testsuites/stability/src/main/resources/simulatorsetup/config/pdp/OnapPfConfig.json +++ b/testsuites/stability/src/main/resources/simulatorsetup/config/pdp/OnapPfConfig.json @@ -1,7 +1,8 @@ { "name":"OnapPfParameterGroup", - "pdpStatusParameters":{ - "timeIntervalMs": 120000, + "pdpStatusParameters": { + "pdpGroup": "sampleGroup", + "timeIntervalMs": 30000, "pdpType":"apex", "description":"Pdp Heartbeat", "supportedPolicyTypes":[{"name":"onap.policies.controlloop.operational.Apex","version":"1.0.0"}] diff --git a/testsuites/stability/src/main/resources/simulatorsetup/setup_components.sh b/testsuites/stability/src/main/resources/simulatorsetup/setup_components.sh index 86de3c1e..8ea123d9 100644 --- a/testsuites/stability/src/main/resources/simulatorsetup/setup_components.sh +++ b/testsuites/stability/src/main/resources/simulatorsetup/setup_components.sh @@ -1,6 +1,6 @@ #!/bin/bash # ============LICENSE_START======================================================= -# Copyright (c) 2019 Nordix Foundation. +# Copyright (c) 2019 - 2020 Nordix Foundation. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -59,6 +59,7 @@ cd ${DIR} rm -rf ${WORK_DIR} docker run -p 3306:3306 -v ${DIR}/config/db:/docker-entrypoint-initdb.d --name mariadb --env-file ${DIR}/config/db/db.conf -d --rm mariadb:10.2.14 --lower-case-table-names=1 --wait_timeout=28800 -docker run -p 3904:3904 -d --name dmaap-simulator --rm dmaap/simulator:latest -docker run -v ${DIR}/config/pdp:/opt/app/policy/pdp-sim/etc/config/ -d --name pdp-simulator --rm pdp/simulator:latest +docker run -p 3904:3904 -d --name message-router --rm dmaap/simulator:latest +sleep 10 +docker run --link message-router:message-router -d --name pdp-simulator --rm pdp/simulator:latest docker run -p 6969:6969 --link mariadb:mariadb --name policy-api -d --rm nexus3.onap.org:10001/onap/policy-api diff --git a/testsuites/stability/src/main/resources/testplans/pdp_sim_startup.sh b/testsuites/stability/src/main/resources/testplans/pdp_sim_startup.sh new file mode 100644 index 00000000..0d25417d --- /dev/null +++ b/testsuites/stability/src/main/resources/testplans/pdp_sim_startup.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# ============LICENSE_START======================================================= +# Copyright (c) 2020 Nordix Foundation. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# ============LICENSE_END========================================================= + +# the directory of the pdp config +echo $1 +docker run -v $1/config/pdp:/opt/app/policy/pdp-sim/etc/config/ --link message-router:message-router -d --rm --name pdp-simulator_sample pdp/simulator:latest diff --git a/testsuites/stability/src/main/resources/testplans/pdp_sim_stop.sh b/testsuites/stability/src/main/resources/testplans/pdp_sim_stop.sh new file mode 100644 index 00000000..0a8e1970 --- /dev/null +++ b/testsuites/stability/src/main/resources/testplans/pdp_sim_stop.sh @@ -0,0 +1,20 @@ +#!/bin/bash +# ============LICENSE_START======================================================= +# Copyright (c) 2020 Nordix Foundation. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# ============LICENSE_END========================================================= + +docker stop pdp-simulator_sample diff --git a/testsuites/stability/src/main/resources/testplans/stability.jmx b/testsuites/stability/src/main/resources/testplans/stability.jmx index 63cfa32c..89fbb037 100644 --- a/testsuites/stability/src/main/resources/testplans/stability.jmx +++ b/testsuites/stability/src/main/resources/testplans/stability.jmx @@ -4,7 +4,7 @@ ONAP Policy PAP ================================================================================ Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. - Modifications Copyright (C) 2019 Nordix Foundation. + Modifications Copyright (C) 2019 - 2020 Nordix Foundation. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -19,18 +19,18 @@ limitations under the License. ============LICENSE_END========================================================= --> -<jmeterTestPlan version="1.2" properties="5.0" jmeter="5.0 r1840935"> +<jmeterTestPlan version="1.2" properties="5.0" jmeter="5.2.1"> <hashTree> <TestPlan guiclass="TestPlanGui" testclass="TestPlan" testname="Policy PAP Stability" enabled="true"> <stringProp name="TestPlan.comments">Policy PAP Stability Tests</stringProp> <boolProp name="TestPlan.functional_mode">false</boolProp> <boolProp name="TestPlan.tearDown_on_shutdown">true</boolProp> - <boolProp name="TestPlan.serialize_threadgroups">false</boolProp> + <boolProp name="TestPlan.serialize_threadgroups">true</boolProp> <elementProp name="TestPlan.user_defined_variables" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> <collectionProp name="Arguments.arguments"> <elementProp name="PAP_HOST" elementType="Argument"> <stringProp name="Argument.name">PAP_HOST</stringProp> - <stringProp name="Argument.value">10.2.0.43</stringProp> + <stringProp name="Argument.value">10.2.0.163</stringProp> <stringProp name="Argument.metadata">=</stringProp> </elementProp> <elementProp name="PAP_PORT" elementType="Argument"> @@ -40,7 +40,7 @@ </elementProp> <elementProp name="API_HOST" elementType="Argument"> <stringProp name="Argument.name">API_HOST</stringProp> - <stringProp name="Argument.value">10.2.0.41</stringProp> + <stringProp name="Argument.value">10.2.0.135</stringProp> <stringProp name="Argument.metadata">=</stringProp> </elementProp> <elementProp name="API_PORT" elementType="Argument"> @@ -48,6 +48,16 @@ <stringProp name="Argument.value">6969</stringProp> <stringProp name="Argument.metadata">=</stringProp> </elementProp> + <elementProp name="DIR" elementType="Argument"> + <stringProp name="Argument.name">DIR</stringProp> + <stringProp name="Argument.value">/home/adityap/pap/testsuites/stability/src/main/resources/testplans/</stringProp> + <stringProp name="Argument.metadata">=</stringProp> + </elementProp> + <elementProp name="CONFIG_DIR" elementType="Argument"> + <stringProp name="Argument.name">CONFIG_DIR</stringProp> + <stringProp name="Argument.value">/home/adityap/pap/testsuites/stability/src/main/resources/simulatorsetup/</stringProp> + <stringProp name="Argument.metadata">=</stringProp> + </elementProp> </collectionProp> </elementProp> <stringProp name="TestPlan.user_define_classpath"></stringProp> @@ -56,14 +66,14 @@ <AuthManager guiclass="AuthPanel" testclass="AuthManager" testname="HTTP Authorization Manager" enabled="true"> <collectionProp name="AuthManager.auth_list"> <elementProp name="" elementType="Authorization"> - <stringProp name="Authorization.url">https://${PAP_HOST}:6969/policy/pap/v1</stringProp> + <stringProp name="Authorization.url">https://${PAP_HOST}:${PAP_PORT}/policy/pap/v1</stringProp> <stringProp name="Authorization.username">healthcheck</stringProp> <stringProp name="Authorization.password">zb!XztG34</stringProp> <stringProp name="Authorization.domain"></stringProp> <stringProp name="Authorization.realm"></stringProp> </elementProp> <elementProp name="" elementType="Authorization"> - <stringProp name="Authorization.url">https://${API_HOST}:6969/policy/api/v1</stringProp> + <stringProp name="Authorization.url">https://${API_HOST}:${API_PORT}/policy/api/v1</stringProp> <stringProp name="Authorization.username">healthcheck</stringProp> <stringProp name="Authorization.password">zb!XztG34</stringProp> <stringProp name="Authorization.domain"></stringProp> @@ -71,6 +81,7 @@ </elementProp> </collectionProp> <boolProp name="AuthManager.clearEachIteration">true</boolProp> + <boolProp name="AuthManager.controlledByThreadGroup">false</boolProp> </AuthManager> <hashTree/> <HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true"> @@ -95,8 +106,9 @@ <stringProp name="ThreadGroup.num_threads">1</stringProp> <stringProp name="ThreadGroup.ramp_time">1</stringProp> <boolProp name="ThreadGroup.scheduler">false</boolProp> - <stringProp name="ThreadGroup.duration"></stringProp> + <stringProp name="ThreadGroup.duration">260000</stringProp> <stringProp name="ThreadGroup.delay"></stringProp> + <boolProp name="ThreadGroup.same_user_on_next_iteration">true</boolProp> </SetupThreadGroup> <hashTree> <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Create Policy Type" enabled="true"> @@ -106,289 +118,266 @@ <elementProp name="" elementType="HTTPArgument"> <boolProp name="HTTPArgument.always_encode">false</boolProp> <stringProp name="Argument.value">{
 - "tosca_definitions_version": "tosca_simple_yaml_1_0_0",
 - "policy_types": [
 - {
 - "onap.policies.controlloop.operational.Apex": {
 - "version": "1.0.0",
 - "description": "Operational Policy for Control Loops using the APEX PDP",
 - "properties": {
 - "engine_service": {
 - "type": "onap.datatypes.policies.controlloop.operational.apex.EngineService",
 - "description": "APEX Engine Service Parameters"
 - },
 - "inputs": {
 - "type": "map",
 - "description": "Inputs for handling events coming into the APEX engine",
 - "entry_schema": {
 - "type": "onap.datatypes.policies.controlloop.operational.apex.EventHandler"
 - }
 - },
 - "outputs": {
 - "type": "map",
 - "description": "Outputs for handling events going out of the APEX engine",
 - "entry_schema": {
 - "type": "onap.datatypes.policies.controlloop.operational.apex.EventHandler"
 - }
 - },
 - "environment": {
 - "type": "list",
 - "description": "Envioronmental parameters for the APEX engine",
 - "entry_schema": {
 - "type": "onap.datatypes.policies.controlloop.operational.apex.Environment"
 - }
 + "tosca_definitions_version": "tosca_simple_yaml_1_1_0",
 + "policy_types": {
 + "onap.policies.controlloop.operational.Apex": {
 + "version": "1.0.0",
 + "description": "Operational Policy for Control Loops using the APEX PDP",
 + "properties": {
 + "engine_service": {
 + "type": "onap.datatypes.policies.controlloop.operational.apex.EngineService",
 + "description": "APEX Engine Service Parameters"
 + },
 + "inputs": {
 + "type": "map",
 + "description": "Inputs for handling events coming into the APEX engine",
 + "entry_schema": {
 + "type": "onap.datatypes.policies.controlloop.operational.apex.EventHandler"
 + }
 + },
 + "outputs": {
 + "type": "map",
 + "description": "Outputs for handling events going out of the APEX engine",
 + "entry_schema": {
 + "type": "onap.datatypes.policies.controlloop.operational.apex.EventHandler"
 + }
 + },
 + "environment": {
 + "type": "list",
 + "description": "Envioronmental parameters for the APEX engine",
 + "entry_schema": {
 + "type": "onap.datatypes.policies.controlloop.operational.apex.Environment"
 }
 }
 }
 }
 - ],
 - "data_types": [
 - {
 - "onap.datatypes.policies.controlloop.operational.apex.EngineService": {
 - "derived_from": "tosca.datatypes.Root",
 - "properties": {
 - "name": {
 - "type": "string",
 - "description": "Specifies the engine name",
 - "required": false,
 - "default": "ApexEngineService"
 - },
 - "version": {
 - "type": "string",
 - "description": "Specifies the engine version in double dotted format",
 - "required": false,
 - "default": "1.0.0"
 - },
 - "id": {
 - "type": "int",
 - "description": "Specifies the engine id",
 - "required": true
 - },
 - "instance_count": {
 - "type": "int",
 - "description": "Specifies the number of engine threads that should be run",
 - "required": true
 - },
 - "deployment_port": {
 - "type": "int",
 - "description": "Specifies the port to connect to for engine administration",
 - "required": false,
 - "default": 1
 - },
 - "policy_model_file_name": {
 - "type": "string",
 - "description": "The name of the file from which to read the APEX policy model",
 - "required": false,
 - "default": ""
 - },
 - "policy_type_impl": {
 - "type": "string",
 - "description": "The policy type implementation from which to read the APEX policy model",
 - "required": false,
 - "default": ""
 - },
 - "periodic_event_period": {
 - "type": "string",
 - "description": "The time interval in milliseconds for the periodic scanning event, 0 means \"don't scan\"",
 - "required": false,
 - "default": 0
 - },
 - "engine": {
 - "type": "onap.datatypes.policies.controlloop.operational.apex.engineservice.Engine",
 - "description": "The parameters for all engines in the APEX engine service",
 - "required": true
 - }
 + },
 + "data_types": {
 + "onap.datatypes.policies.controlloop.operational.apex.EngineService": {
 + "derived_from": "tosca.datatypes.Root",
 + "properties": {
 + "name": {
 + "type": "string",
 + "description": "Specifies the engine name",
 + "required": false,
 + "default": "ApexEngineService"
 + },
 + "version": {
 + "type": "string",
 + "description": "Specifies the engine version in double dotted format",
 + "required": false,
 + "default": "1.0.0"
 + },
 + "id": {
 + "type": "integer",
 + "description": "Specifies the engine id",
 + "required": true
 + },
 + "instance_count": {
 + "type": "integer",
 + "description": "Specifies the number of engine threads that should be run",
 + "required": true
 + },
 + "deployment_port": {
 + "type": "integer",
 + "description": "Specifies the port to connect to for engine administration",
 + "required": false,
 + "default": 1
 + },
 + "policy_model_file_name": {
 + "type": "string",
 + "description": "The name of the file from which to read the APEX policy model",
 + "required": false
 + },
 + "policy_type_impl": {
 + "type": "string",
 + "description": "The policy type implementation from which to read the APEX policy model",
 + "required": false
 + },
 + "periodic_event_period": {
 + "type": "string",
 + "description": "The time interval in milliseconds for the periodic scanning event, 0 means \"don't scan\"",
 + "required": false,
 + "default": 0
 + },
 + "engine": {
 + "type": "onap.datatypes.policies.controlloop.operational.apex.engineservice.Engine",
 + "description": "The parameters for all engines in the APEX engine service",
 + "required": true
 }
 }
 },
 - {
 - "onap.datatypes.policies.controlloop.operational.apex.EventHandler": {
 - "derived_from": "tosca.datatypes.Root",
 - "properties": {
 - "name": {
 - "type": "string",
 - "description": "Specifies the event handler name, if not specified this is set to the key name",
 - "required": false
 - },
 - "carrier_technology": {
 - "type": "onap.datatypes.policies.controlloop.operational.apex.CarrierTechnology",
 - "description": "Specifies the carrier technology of the event handler (such as REST/Web Socket/Kafka)",
 - "required": true
 - },
 - "event_protocol": {
 - "type": "onap.datatypes.policies.controlloop.operational.apex.EventProtocol",
 - "description": "Specifies the event protocol of events for the event handler (such as Yaml/JSON/XML/POJO)",
 - "required": true
 - },
 - "event_name": {
 - "type": "string",
 - "description": "Specifies the event name for events on this event handler, if not specified, the event name is read from or written to the event being received or sent",
 - "required": false
 - },
 - "event_name_filter": {
 - "type": "string",
 - "description": "Specifies a filter as a regular expression, events that do not match the filter are dropped, the default is to let all events through",
 - "required": false
 - },
 - "synchronous_mode": {
 - "type": "bool",
 - "description": "Specifies the event handler is syncronous (receive event and send response)",
 - "required": false,
 - "default": false
 - },
 - "synchronous_peer": {
 - "type": "string",
 - "description": "The peer event handler (output for input or input for output) of this event handler in synchronous mode, this parameter is mandatory if the event handler is in synchronous mode",
 - "required": false,
 - "default": ""
 - },
 - "synchronous_timeout": {
 - "type": "int",
 - "description": "The timeout in milliseconds for responses to be issued by APEX torequests, this parameter is mandatory if the event handler is in synchronous mode",
 - "required": false,
 - "default": ""
 - },
 - "requestor_mode": {
 - "type": "bool",
 - "description": "Specifies the event handler is in requestor mode (send event and wait for response mode)",
 - "required": false,
 - "default": false
 - },
 - "requestor_peer": {
 - "type": "string",
 - "description": "The peer event handler (output for input or input for output) of this event handler in requestor mode, this parameter is mandatory if the event handler is in requestor mode",
 - "required": false,
 - "default": ""
 - },
 - "requestor_timeout": {
 - "type": "int",
 - "description": "The timeout in milliseconds for wait for responses to requests, this parameter is mandatory if the event handler is in requestor mode",
 - "required": false,
 - "default": ""
 - }
 + "onap.datatypes.policies.controlloop.operational.apex.EventHandler": {
 + "derived_from": "tosca.datatypes.Root",
 + "properties": {
 + "name": {
 + "type": "string",
 + "description": "Specifies the event handler name, if not specified this is set to the key name",
 + "required": false
 + },
 + "carrier_technology": {
 + "type": "onap.datatypes.policies.controlloop.operational.apex.CarrierTechnology",
 + "description": "Specifies the carrier technology of the event handler (such as REST/Web Socket/Kafka)",
 + "required": true
 + },
 + "event_protocol": {
 + "type": "onap.datatypes.policies.controlloop.operational.apex.EventProtocol",
 + "description": "Specifies the event protocol of events for the event handler (such as Yaml/JSON/XML/POJO)",
 + "required": true
 + },
 + "event_name": {
 + "type": "string",
 + "description": "Specifies the event name for events on this event handler, if not specified, the event name is read from or written to the event being received or sent",
 + "required": false
 + },
 + "event_name_filter": {
 + "type": "string",
 + "description": "Specifies a filter as a regular expression, events that do not match the filter are dropped, the default is to let all events through",
 + "required": false
 + },
 + "synchronous_mode": {
 + "type": "boolean",
 + "description": "Specifies the event handler is syncronous (receive event and send response)",
 + "required": false,
 + "default": false
 + },
 + "synchronous_peer": {
 + "type": "string",
 + "description": "The peer event handler (output for input or input for output) of this event handler in synchronous mode, this parameter is mandatory if the event handler is in synchronous mode",
 + "required": false
 + },
 + "synchronous_timeout": {
 + "type": "integer",
 + "description": "The timeout in milliseconds for responses to be issued by APEX torequests, this parameter is mandatory if the event handler is in synchronous mode",
 + "required": false
 + },
 + "requestor_mode": {
 + "type": "boolean",
 + "description": "Specifies the event handler is in requestor mode (send event and wait for response mode)",
 + "required": false,
 + "default": false
 + },
 + "requestor_peer": {
 + "type": "string",
 + "description": "The peer event handler (output for input or input for output) of this event handler in requestor mode, this parameter is mandatory if the event handler is in requestor mode",
 + "required": false
 + },
 + "requestor_timeout": {
 + "type": "integer",
 + "description": "The timeout in milliseconds for wait for responses to requests, this parameter is mandatory if the event handler is in requestor mode",
 + "required": false
 }
 }
 },
 - {
 - "onap.datatypes.policies.controlloop.operational.apex.CarrierTechnology": {
 - "derived_from": "tosca.datatypes.Root",
 - "properties": {
 - "label": {
 - "type": "string",
 - "description": "The label (name) of the carrier technology (such as REST, Kafka, WebSocket)",
 - "required": true
 - },
 - "plugin_parameter_class_name": {
 - "type": "string",
 - "description": "The class name of the class that overrides default handling of event input or output for this carrier technology, defaults to the supplied input or output class",
 - "required": false
 - }
 + "onap.datatypes.policies.controlloop.operational.apex.CarrierTechnology": {
 + "derived_from": "tosca.datatypes.Root",
 + "properties": {
 + "label": {
 + "type": "string",
 + "description": "The label (name) of the carrier technology (such as REST, Kafka, WebSocket)",
 + "required": true
 + },
 + "plugin_parameter_class_name": {
 + "type": "string",
 + "description": "The class name of the class that overrides default handling of event input or output for this carrier technology, defaults to the supplied input or output class",
 + "required": false
 }
 }
 },
 - {
 - "onap.datatypes.policies.controlloop.operational.apex.EventProtocol": {
 - "derived_from": "tosca.datatypes.Root",
 - "properties": {
 - "label": {
 - "type": "string",
 - "description": "The label (name) of the event protocol (such as Yaml, JSON, XML, or POJO)",
 - "required": true
 - },
 - "event_protocol_plugin_class": {
 - "type": "string",
 - "description": "The class name of the class that overrides default handling of the event protocol for this carrier technology, defaults to the supplied event protocol class",
 - "required": false
 - }
 + "onap.datatypes.policies.controlloop.operational.apex.EventProtocol": {
 + "derived_from": "tosca.datatypes.Root",
 + "properties": {
 + "label": {
 + "type": "string",
 + "description": "The label (name) of the event protocol (such as Yaml, JSON, XML, or POJO)",
 + "required": true
 + },
 + "event_protocol_plugin_class": {
 + "type": "string",
 + "description": "The class name of the class that overrides default handling of the event protocol for this carrier technology, defaults to the supplied event protocol class",
 + "required": false
 }
 }
 },
 - {
 - "onap.datatypes.policies.controlloop.operational.apex.Environmental": {
 - "derived_from": "tosca.datatypes.Root",
 - "properties": {
 - "name": {
 - "type": "string",
 - "description": "The name of the environment variable",
 - "required": true
 - },
 - "value": {
 - "type": "string",
 - "description": "The value of the environment variable",
 - "required": true
 - }
 + "onap.datatypes.policies.controlloop.operational.apex.Environment": {
 + "derived_from": "tosca.datatypes.Root",
 + "properties": {
 + "name": {
 + "type": "string",
 + "description": "The name of the environment variable",
 + "required": true
 + },
 + "value": {
 + "type": "string",
 + "description": "The value of the environment variable",
 + "required": true
 }
 }
 },
 - {
 - "onap.datatypes.policies.controlloop.operational.apex.engineservice.Engine": {
 - "derived_from": "tosca.datatypes.Root",
 - "properties": {
 - "context": {
 - "type": "onap.datatypes.policies.controlloop.operational.apex.engineservice.engine.Context",
 - "description": "The properties for handling context in APEX engines, defaults to using Java maps for context",
 - "required": false
 - },
 - "executors": {
 - "type": "map",
 - "description": "The plugins for policy executors used in engines such as javascript, MVEL, Jython",
 - "required": true,
 - "entry_schema": {
 - "description": "The plugin class path for this policy executor",
 - "type": "string"
 - }
 + "onap.datatypes.policies.controlloop.operational.apex.engineservice.Engine": {
 + "derived_from": "tosca.datatypes.Root",
 + "properties": {
 + "context": {
 + "type": "onap.datatypes.policies.controlloop.operational.apex.engineservice.engine.Context",
 + "description": "The properties for handling context in APEX engines, defaults to using Java maps for context",
 + "required": false
 + },
 + "executors": {
 + "type": "map",
 + "description": "The plugins for policy executors used in engines such as javascript, MVEL, Jython",
 + "required": true,
 + "entry_schema": {
 + "description": "The plugin class path for this policy executor",
 + "type": "string"
 }
 }
 }
 },
 - {
 - "onap.datatypes.policies.controlloop.operational.apex.engineservice.engine.Context": {
 - "derived_from": "tosca.datatypes.Root",
 - "properties": {
 - "distributor": {
 - "type": "onap.datatypes.policies.controlloop.operational.apex.Plugin",
 - "description": "The plugin to be used for distributing context between APEX PDPs at runtime",
 - "required": false
 - },
 - "schemas": {
 - "type": "map",
 - "description": "The plugins for context schemas available in APEX PDPs such as Java and Avro",
 - "required": false,
 - "entry_schema": {
 - "type": "onap.datatypes.policies.controlloop.operational.apex.Plugin"
 - }
 - },
 - "locking": {
 - "type": "onap.datatypes.policies.controlloop.operational.apex.plugin",
 - "description": "The plugin to be used for locking context in and between APEX PDPs at runtime",
 - "required": false
 - },
 - "persistence": {
 - "type": "onap.datatypes.policies.controlloop.operational.apex.Plugin",
 - "description": "The plugin to be used for persisting context for APEX PDPs at runtime",
 - "required": false
 + "onap.datatypes.policies.controlloop.operational.apex.engineservice.engine.Context": {
 + "derived_from": "tosca.datatypes.Root",
 + "properties": {
 + "distributor": {
 + "type": "onap.datatypes.policies.controlloop.operational.apex.Plugin",
 + "description": "The plugin to be used for distributing context between APEX PDPs at runtime",
 + "required": false
 + },
 + "schemas": {
 + "type": "map",
 + "description": "The plugins for context schemas available in APEX PDPs such as Java and Avro",
 + "required": false,
 + "entry_schema": {
 + "type": "onap.datatypes.policies.controlloop.operational.apex.Plugin"
 }
 + },
 + "locking": {
 + "type": "onap.datatypes.policies.controlloop.operational.apex.Plugin",
 + "description": "The plugin to be used for locking context in and between APEX PDPs at runtime",
 + "required": false
 + },
 + "persistence": {
 + "type": "onap.datatypes.policies.controlloop.operational.apex.Plugin",
 + "description": "The plugin to be used for persisting context for APEX PDPs at runtime",
 + "required": false
 }
 }
 },
 - {
 - "onap.datatypes.policies.controlloop.operational.apex.Plugin": {
 - "derived_from": "tosca.datatypes.Root",
 - "properties": {
 - "name": {
 - "type": "string",
 - "description": "The name of the executor such as Javascript, Jython or MVEL",
 - "required": true
 - },
 - "plugin_class_name": {
 - "type": "string",
 - "description": "The class path of the plugin class for this executor"
 - }
 + "onap.datatypes.policies.controlloop.operational.apex.Plugin": {
 + "derived_from": "tosca.datatypes.Root",
 + "properties": {
 + "name": {
 + "type": "string",
 + "description": "The name of the executor such as Javascript, Jython or MVEL",
 + "required": true
 + },
 + "plugin_class_name": {
 + "type": "string",
 + "description": "The class path of the plugin class for this executor"
 }
 }
 }
 - ]
 -}</stringProp> + }
 +}
 +</stringProp> <stringProp name="Argument.metadata">=</stringProp> </elementProp> </collectionProp> @@ -426,74 +415,14921 @@ <elementProp name="" elementType="HTTPArgument"> <boolProp name="HTTPArgument.always_encode">false</boolProp> <stringProp name="Argument.value">{
 - "tosca_definitions_version": "tosca_simple_yaml_1_0_0",
 + "tosca_definitions_version": "tosca_simple_yaml_1_1_0",
 "topology_template": {
 "policies": [
 {
 - "operational.apex.sampledomain": {
 + "operational.apex.stabilityTestDefaultDomain": {
 "type": "onap.policies.controlloop.operational.Apex",
 - "typeVersion": "1.0.0",
 - "name": "onap.policies.controlloop.operational.apex.Sampledomain",
 + "type_version": "1.0.0",
 "version": "1.0.0",
 + "metadata": {
 + "policy-id": "operational.apex.defaultDomain",
 + "policy-version": 1
 + },
 "properties": {
 - "content": {
 - "engineServiceParameters": {
 - "name": "MyApexEngine",
 - "version": "0.0.1",
 - "id": 45,
 - "instanceCount": 4,
 - "deploymentPort": 12561,
 - "policy_type_impl": {
 - "policy_impl": "There will be an actual policy impl in production"
 - },
 - "engineParameters": {
 - "executorParameters": {
 - "JAVASCRIPT": {
 - "parameterClassName": "org.onap.policy.apex.plugins.executor.javascript.JavascriptExecutorParameters"
 + "engineServiceParameters": {
 + "name": "MyApexEngine",
 + "version": "0.0.1",
 + "id": 45,
 + "instanceCount": 4,
 + "deploymentPort": 12561,
 + "policy_type_impl": {
 + "apexPolicyModel": {
 + "key": {
 + "name": "SamplePolicyModelJAVASCRIPT",
 + "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": "ca36bfd8-6042-3633-8c85-89c66507c3bf",
 + "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": "465a81cc-885f-3a4d-bc4e-1508da92b236",
 + "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": "36b2d570-fff7-3a4b-bab2-6bf492f5129a",
 + "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": "ff6160a7-fb5e-379c-a6d2-2cd28053eacf",
 + "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": "5899e216-2abf-3781-abc4-2c257b92721e",
 + "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": "7c2692a7-4587-3d09-abf9-d96b339a316f",
 + "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": "b696048c-c0b0-34c1-8dbe-32ab6c8bc0c7",
 + "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": "edbfa868-2ab2-30fd-8078-4c7f67ca6122",
 + "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": "6b6ad2ff-ef63-3f7b-aabb-fba44f8de9d4",
 + "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": "c2550912-10d9-3000-8826-377288cd6cb1",
 + "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": "f6d75b71-c8a7-3337-a121-88d68c389f5a",
 + "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": "0215644c-4531-375c-8335-d558b4de8c03",
 + "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": "976a79e7-5c80-3c03-9503-da3f41fec395",
 + "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": "c95e9e5f-d2c7-3ac7-a205-ea3574530cb7",
 + "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": "1ff2f905-685c-3caf-95bc-0bbc90345888",
 + "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": "f54c3b2b-be76-31c4-adfc-87c494c06808",
 + "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": "3410e939-30ca-32c4-a2d8-c30b6fee6eec",
 + "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": "e27564c4-3cbf-3db2-9bf3-83ae80a2f907",
 + "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": "d0b2b585-f344-33b8-af9e-250e7f4cfbce",
 + "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": "815d74ae-6fc0-3221-87b9-2bb1dfdfa7f0",
 + "description": "Generated description for concept referred to by key \"Policy1ContextAlbum:0.0.1\""
 + }
 + },
 + {
 + "key": {
 + "name": "SamplePolicyModelJAVASCRIPT",
 + "version": "0.0.1"
 + },
 + "value": {
 + "key": {
 + "name": "SamplePolicyModelJAVASCRIPT",
 + "version": "0.0.1"
 + },
 + "UUID": "bc8ee312-81ce-3c4a-92d5-4a73b8077148",
 + "description": "Generated description for concept referred to by key \"SamplePolicyModelJAVASCRIPT:0.0.1\""
 + }
 + },
 + {
 + "key": {
 + "name": "Task_Act0",
 + "version": "0.0.1"
 + },
 + "value": {
 + "key": {
 + "name": "Task_Act0",
 + "version": "0.0.1"
 + },
 + "UUID": "0589ff20-adcc-3ce5-95fe-8d7978ed54ed",
 + "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": "095b126d-ca8b-32c9-ad52-d744e817a79c",
 + "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": "3d786b4c-d9ee-3367-ab71-c67271a4ea2f",
 + "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": "9231753e-20c5-3436-982f-9100340cc570",
 + "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": "502383d3-483f-3a56-a426-2f0406674c8d",
 + "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": "16598106-41c8-3b5a-99c6-5fcf6d1a5ddf",
 + "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": "ad3a89f5-e369-3c66-b22c-669f7b3653b8",
 + "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": "56815939-1164-3867-9ed1-0a27ff8aafb3",
 + "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": "0db0c566-ecd7-3e27-9865-4b82c893abdb",
 + "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": "6944a4c1-6201-317c-8d7e-eaa7f2ee0ea0",
 + "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": "0f766ea9-11cd-3e7d-a8c8-28c8dee6a85a",
 + "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": "c3237a38-cc6d-3418-b1e1-0dc8b4bdcc66",
 + "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": "051bcfd5-cf73-3c89-8ee7-ea6e005ec059",
 + "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": "3754fe19-98f2-34a1-9f45-db31052208d8",
 + "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": "8c200709-a180-3c8b-916f-275ff49ce194",
 + "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": "a1a879c6-4510-33b0-bbd0-ad6256189a37",
 + "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": "a7fab96b-ce1c-37ce-bbb2-556b6db524a5",
 + "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": "0a652886-c88d-3f8c-8994-ae9161e7c963",
 + "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": "8efba9fa-371e-33df-a7d6-88b0284e7fd0",
 + "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": "3740077c-a2b3-356b-81dc-5ded2118a951",
 + "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": "b5c7df95-9af5-322f-9ea8-eb440a2bf926",
 + "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": "b36f0aa5-0fb9-3e2c-8fa2-fddb7fd05f4b",
 + "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": "093cda11-eaeb-3a46-a5b6-d5e30c00935b",
 + "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": "569a758d-ba40-37c0-aebb-7ad138df25ac",
 + "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": "252818d9-b61f-3962-a905-8865fb00fb04",
 + "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": "fe1a5f7c-c083-377b-a797-752b01fc6c73",
 + "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": "aa87d007-d07e-3f67-8c6d-0ebc3d85479d",
 + "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": "126e7a3a-11b6-3f88-9397-c21d8819f859",
 + "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": "0e0e3dec-e03d-3379-a87b-1ecd4aa3d8cc",
 + "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": "dbdc98df-3ff4-360c-b8d3-a7a836ac3de6",
 + "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": "32a2f355-77f3-3b25-ace6-7a9c5763a5ad",
 + "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": "3f95472c-973e-30e2-95f1-bf00cbef909a",
 + "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": "610dbbd4-9149-3b3c-9af4-819056f0e169",
 + "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": "07fa8f68-55f1-3fd0-81c1-749a379753a7",
 + "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": "d9c93cd1-539e-35c5-aaec-bb711ceb1251",
 + "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": "683fe492-7eae-3ac7-9924-bb7850208d05",
 + "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": "bba25b6f-e3cd-3060-9022-4ef3a79f8eb0",
 + "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": "97b73937-c344-33c0-924c-4d26b6449564",
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestActCaseSelected\", new caseSelectedType(2));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestActStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestActCaseSelected\", new caseSelectedType(3));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestActStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestActCaseSelected\", new caseSelectedType(0));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestActStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestActCaseSelected\", new caseSelectedType(1));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestActStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestDecideCaseSelected\", new caseSelectedType(2));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestDecideStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestDecideCaseSelected\", new caseSelectedType(3));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestDecideStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestDecideCaseSelected\", new caseSelectedType(0));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestDecideStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestDecideCaseSelected\", new caseSelectedType(1));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestDecideStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestEstablishCaseSelected\", new caseSelectedType(2));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestEstablishStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestEstablishCaseSelected\", new caseSelectedType(3));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestEstablishStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestEstablishCaseSelected\", new caseSelectedType(0));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestEstablishStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestEstablishCaseSelected\", new caseSelectedType(1));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestEstablishStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestMatchCaseSelected\", new caseSelectedType(2));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestMatchStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestMatchCaseSelected\", new caseSelectedType(3));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestMatchStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestMatchCaseSelected\", new caseSelectedType(0));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestMatchStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestMatchCaseSelected\", new caseSelectedType(1));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestMatchStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + }
 + ]
 + }
 + },
 + "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"
 + }
 + }
 + ]
 }
 }
 }
 },
 - "eventInputParameters": {
 - "FirstConsumer": {
 - "carrierTechnologyParameters": {
 - "carrierTechnology": "RESTSERVER",
 - "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RestServerCarrierTechnologyParameters",
 - "parameters": {
 - "standalone": true,
 - "host": "0.0.0.0",
 - "port": 23324
 + "engineParameters": {
 + "executorParameters": {
 + "JAVASCRIPT": {
 + "parameterClassName": "org.onap.policy.apex.plugins.executor.javascript.JavascriptExecutorParameters"
 + }
 + }
 + }
 + },
 + "eventInputParameters": {
 + "FirstConsumer": {
 + "carrierTechnologyParameters": {
 + "carrierTechnology": "RESTSERVER",
 + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RestServerCarrierTechnologyParameters",
 + "parameters": {
 + "standalone": true,
 + "host": "0.0.0.0",
 + "port": 23324
 + }
 + },
 + "eventProtocolParameters": {
 + "eventProtocol": "JSON"
 + },
 + "synchronousMode": true,
 + "synchronousPeer": "FirstProducer",
 + "synchronousTimeout": 2000
 + }
 + },
 + "eventOutputParameters": {
 + "FirstProducer": {
 + "carrierTechnologyParameters": {
 + "carrierTechnology": "RESTSERVER",
 + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RestServerCarrierTechnologyParameters"
 + },
 + "eventProtocolParameters": {
 + "eventProtocol": "JSON"
 + },
 + "synchronousMode": true,
 + "synchronousPeer": "FirstConsumer",
 + "synchronousTimeout": 2000
 + }
 + }
 + }
 + }
 + }
 + ]
 + }
 +}
 +</stringProp> + <stringProp name="Argument.metadata">=</stringProp> + </elementProp> + </collectionProp> + </elementProp> + <stringProp name="HTTPSampler.domain">${API_HOST}</stringProp> + <stringProp name="HTTPSampler.port">${API_PORT}</stringProp> + <stringProp name="HTTPSampler.protocol">https</stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/policy/api/v1/policytypes/onap.policies.controlloop.operational.Apex/versions/1.0.0/policies</stringProp> + <stringProp name="HTTPSampler.method">POST</stringProp> + <boolProp name="HTTPSampler.follow_redirects">true</boolProp> + <boolProp name="HTTPSampler.auto_redirects">false</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + </HTTPSamplerProxy> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="49586">200</stringProp> + </collectionProp> + <stringProp name="Assertion.custom_message"></stringProp> + <stringProp name="Assertion.test_field">Assertion.response_code</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Create Policy sampleDomain" enabled="true"> + <boolProp name="HTTPSampler.postBodyRaw">true</boolProp> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments"> + <collectionProp name="Arguments.arguments"> + <elementProp name="" elementType="HTTPArgument"> + <boolProp name="HTTPArgument.always_encode">false</boolProp> + <stringProp name="Argument.value">{
 + "tosca_definitions_version": "tosca_simple_yaml_1_1_0",
 + "topology_template": {
 + "policies": [
 + {
 + "operational.apex.stabilityTestSampleDomain": {
 + "type": "onap.policies.controlloop.operational.Apex",
 + "type_version": "1.0.0",
 + "version": "1.0.0",
 + "metadata": {
 + "policy-id": "operational.apex.stabilityTestSampleDomain",
 + "policy-version": 1
 + },
 + "properties": {
 + "engineServiceParameters": {
 + "name": "MyApexEngine",
 + "version": "0.0.1",
 + "id": 45,
 + "instanceCount": 4,
 + "deploymentPort": 12561,
 + "policy_type_impl": {
 + "apexPolicyModel": {
 + "key": {
 + "name": "SamplePolicyModelJAVASCRIPT",
 + "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": "ca36bfd8-6042-3633-8c85-89c66507c3bf",
 + "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": "465a81cc-885f-3a4d-bc4e-1508da92b236",
 + "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": "36b2d570-fff7-3a4b-bab2-6bf492f5129a",
 + "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": "ff6160a7-fb5e-379c-a6d2-2cd28053eacf",
 + "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": "5899e216-2abf-3781-abc4-2c257b92721e",
 + "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": "7c2692a7-4587-3d09-abf9-d96b339a316f",
 + "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": "b696048c-c0b0-34c1-8dbe-32ab6c8bc0c7",
 + "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": "edbfa868-2ab2-30fd-8078-4c7f67ca6122",
 + "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": "6b6ad2ff-ef63-3f7b-aabb-fba44f8de9d4",
 + "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": "c2550912-10d9-3000-8826-377288cd6cb1",
 + "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": "f6d75b71-c8a7-3337-a121-88d68c389f5a",
 + "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": "0215644c-4531-375c-8335-d558b4de8c03",
 + "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": "976a79e7-5c80-3c03-9503-da3f41fec395",
 + "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": "c95e9e5f-d2c7-3ac7-a205-ea3574530cb7",
 + "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": "1ff2f905-685c-3caf-95bc-0bbc90345888",
 + "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": "f54c3b2b-be76-31c4-adfc-87c494c06808",
 + "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": "3410e939-30ca-32c4-a2d8-c30b6fee6eec",
 + "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": "e27564c4-3cbf-3db2-9bf3-83ae80a2f907",
 + "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": "d0b2b585-f344-33b8-af9e-250e7f4cfbce",
 + "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": "815d74ae-6fc0-3221-87b9-2bb1dfdfa7f0",
 + "description": "Generated description for concept referred to by key \"Policy1ContextAlbum:0.0.1\""
 + }
 + },
 + {
 + "key": {
 + "name": "SamplePolicyModelJAVASCRIPT",
 + "version": "0.0.1"
 + },
 + "value": {
 + "key": {
 + "name": "SamplePolicyModelJAVASCRIPT",
 + "version": "0.0.1"
 + },
 + "UUID": "bc8ee312-81ce-3c4a-92d5-4a73b8077148",
 + "description": "Generated description for concept referred to by key \"SamplePolicyModelJAVASCRIPT:0.0.1\""
 + }
 + },
 + {
 + "key": {
 + "name": "Task_Act0",
 + "version": "0.0.1"
 + },
 + "value": {
 + "key": {
 + "name": "Task_Act0",
 + "version": "0.0.1"
 + },
 + "UUID": "0589ff20-adcc-3ce5-95fe-8d7978ed54ed",
 + "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": "095b126d-ca8b-32c9-ad52-d744e817a79c",
 + "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": "3d786b4c-d9ee-3367-ab71-c67271a4ea2f",
 + "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": "9231753e-20c5-3436-982f-9100340cc570",
 + "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": "502383d3-483f-3a56-a426-2f0406674c8d",
 + "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": "16598106-41c8-3b5a-99c6-5fcf6d1a5ddf",
 + "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": "ad3a89f5-e369-3c66-b22c-669f7b3653b8",
 + "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": "56815939-1164-3867-9ed1-0a27ff8aafb3",
 + "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": "0db0c566-ecd7-3e27-9865-4b82c893abdb",
 + "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": "6944a4c1-6201-317c-8d7e-eaa7f2ee0ea0",
 + "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": "0f766ea9-11cd-3e7d-a8c8-28c8dee6a85a",
 + "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": "c3237a38-cc6d-3418-b1e1-0dc8b4bdcc66",
 + "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": "051bcfd5-cf73-3c89-8ee7-ea6e005ec059",
 + "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": "3754fe19-98f2-34a1-9f45-db31052208d8",
 + "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": "8c200709-a180-3c8b-916f-275ff49ce194",
 + "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": "a1a879c6-4510-33b0-bbd0-ad6256189a37",
 + "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": "a7fab96b-ce1c-37ce-bbb2-556b6db524a5",
 + "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": "0a652886-c88d-3f8c-8994-ae9161e7c963",
 + "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": "8efba9fa-371e-33df-a7d6-88b0284e7fd0",
 + "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": "3740077c-a2b3-356b-81dc-5ded2118a951",
 + "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": "b5c7df95-9af5-322f-9ea8-eb440a2bf926",
 + "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": "b36f0aa5-0fb9-3e2c-8fa2-fddb7fd05f4b",
 + "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": "093cda11-eaeb-3a46-a5b6-d5e30c00935b",
 + "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": "569a758d-ba40-37c0-aebb-7ad138df25ac",
 + "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": "252818d9-b61f-3962-a905-8865fb00fb04",
 + "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": "fe1a5f7c-c083-377b-a797-752b01fc6c73",
 + "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": "aa87d007-d07e-3f67-8c6d-0ebc3d85479d",
 + "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": "126e7a3a-11b6-3f88-9397-c21d8819f859",
 + "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": "0e0e3dec-e03d-3379-a87b-1ecd4aa3d8cc",
 + "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": "dbdc98df-3ff4-360c-b8d3-a7a836ac3de6",
 + "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": "32a2f355-77f3-3b25-ace6-7a9c5763a5ad",
 + "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": "3f95472c-973e-30e2-95f1-bf00cbef909a",
 + "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": "610dbbd4-9149-3b3c-9af4-819056f0e169",
 + "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": "07fa8f68-55f1-3fd0-81c1-749a379753a7",
 + "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": "d9c93cd1-539e-35c5-aaec-bb711ceb1251",
 + "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": "683fe492-7eae-3ac7-9924-bb7850208d05",
 + "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": "bba25b6f-e3cd-3060-9022-4ef3a79f8eb0",
 + "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": "97b73937-c344-33c0-924c-4d26b6449564",
 + "description": "Generated description for concept referred to by key \"TestTimestamp:0.0.1\""
 + }
 + }
 + ]
 }
 },
 - "eventProtocolParameters": {
 - "eventProtocol": "JSON"
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.subject.defaultTaskKey.copyTo(executor.selectedTask)\n\ntrue;"
 + },
 + "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"
 + }
 + }
 + ]
 + }
 },
 - "synchronousMode": true,
 - "synchronousPeer": "FirstProducer",
 - "synchronousTimeout": 2000
 - }
 - },
 - "eventOutputParameters": {
 - "FirstProducer": {
 - "carrierTechnologyParameters": {
 - "carrierTechnology": "RESTSERVER",
 - "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RestServerCarrierTechnologyParameters"
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestActCaseSelected\", new caseSelectedType(2));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestActStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestActCaseSelected\", new caseSelectedType(3));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestActStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestActCaseSelected\", new caseSelectedType(0));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestActStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestActCaseSelected\", new caseSelectedType(1));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestActStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestDecideCaseSelected\", new caseSelectedType(2));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestDecideStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestDecideCaseSelected\", new caseSelectedType(3));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestDecideStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestDecideCaseSelected\", new caseSelectedType(0));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestDecideStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestDecideCaseSelected\", new caseSelectedType(1));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestDecideStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestEstablishCaseSelected\", new caseSelectedType(2));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestEstablishStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestEstablishCaseSelected\", new caseSelectedType(3));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestEstablishStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestEstablishCaseSelected\", new caseSelectedType(0));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestEstablishStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestEstablishCaseSelected\", new caseSelectedType(1));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestEstablishStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestMatchCaseSelected\", new caseSelectedType(2));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestMatchStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestMatchCaseSelected\", new caseSelectedType(3));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestMatchStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestMatchCaseSelected\", new caseSelectedType(0));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestMatchStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + },
 + {
 + "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": "JAVASCRIPT",
 + "logic": "/*\n * ============LICENSE_START=======================================================\n * Copyright (C) 2016-2018 Ericsson. All rights reserved.\n * ================================================================================\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * \n * SPDX-License-Identifier: Apache-2.0\n * ============LICENSE_END=========================================================\n */\n\nexecutor.logger.debug(executor.subject.id);\nvar gc = executor.getContextAlbum(\"GlobalContextAlbum\");\nexecutor.logger.debug(gc.name);\nexecutor.logger.debug(executor.inFields);\n\nvar caseSelectedType = java.lang.Byte;\nexecutor.outFields.put(\"TestMatchCaseSelected\", new caseSelectedType(1));\n\nvar JavaDate = java.util.Date;\ntimeNow = new JavaDate();\nexecutor.outFields.put(\"TestMatchStateTime\", timeNow.getTime());\nexecutor.logger.debug(executor.eo);\n\ntrue;"
 + }
 + }
 + }
 + ]
 + }
 },
 - "eventProtocolParameters": {
 - "eventProtocol": "JSON"
 + "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
 + }
 + }
 + ]
 + }
 + }
 + }
 + ]
 + }
 },
 - "synchronousMode": true,
 - "synchronousPeer": "FirstConsumer",
 - "synchronousTimeout": 2000
 + "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"
 + }
 + }
 + ]
 + }
 + }
 + }
 + },
 + "engineParameters": {
 + "executorParameters": {
 + "JAVASCRIPT": {
 + "parameterClassName": "org.onap.policy.apex.plugins.executor.javascript.JavascriptExecutorParameters"
 + }
 }
 }
 + },
 + "eventInputParameters": {
 + "FirstConsumer": {
 + "carrierTechnologyParameters": {
 + "carrierTechnology": "RESTSERVER",
 + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RestServerCarrierTechnologyParameters",
 + "parameters": {
 + "standalone": true,
 + "host": "0.0.0.0",
 + "port": 23324
 + }
 + },
 + "eventProtocolParameters": {
 + "eventProtocol": "JSON"
 + },
 + "synchronousMode": true,
 + "synchronousPeer": "FirstProducer",
 + "synchronousTimeout": 2000
 + }
 + },
 + "eventOutputParameters": {
 + "FirstProducer": {
 + "carrierTechnologyParameters": {
 + "carrierTechnology": "RESTSERVER",
 + "parameterClassName": "org.onap.policy.apex.plugins.event.carrier.restserver.RestServerCarrierTechnologyParameters"
 + },
 + "eventProtocolParameters": {
 + "eventProtocol": "JSON"
 + },
 + "synchronousMode": true,
 + "synchronousPeer": "FirstConsumer",
 + "synchronousTimeout": 2000
 + }
 }
 }
 }
 }
 ]
 }
 -}</stringProp> +}
 +</stringProp> <stringProp name="Argument.metadata">=</stringProp> </elementProp> </collectionProp> @@ -526,16 +15362,17 @@ </hashTree> </hashTree> <ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="PAP Test Flow" enabled="true"> - <stringProp name="ThreadGroup.on_sample_error">stoptest</stringProp> + <stringProp name="ThreadGroup.on_sample_error">continue</stringProp> <elementProp name="ThreadGroup.main_controller" elementType="LoopController" guiclass="LoopControlPanel" testclass="LoopController" testname="Loop Controller" enabled="true"> <boolProp name="LoopController.continue_forever">false</boolProp> - <stringProp name="LoopController.loops">1</stringProp> + <intProp name="LoopController.loops">-1</intProp> </elementProp> <stringProp name="ThreadGroup.num_threads">1</stringProp> <stringProp name="ThreadGroup.ramp_time">1</stringProp> - <boolProp name="ThreadGroup.scheduler">false</boolProp> - <stringProp name="ThreadGroup.duration"></stringProp> + <boolProp name="ThreadGroup.scheduler">true</boolProp> + <stringProp name="ThreadGroup.duration">600</stringProp> <stringProp name="ThreadGroup.delay"></stringProp> + <boolProp name="ThreadGroup.same_user_on_next_iteration">true</boolProp> </ThreadGroup> <hashTree> <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Check Health" enabled="true"> @@ -674,10 +15511,6 @@ if (prev.getResponseCode() == '200') { </ResponseAssertion> <hashTree/> </hashTree> - <ConstantTimer guiclass="ConstantTimerGui" testclass="ConstantTimer" testname="Constant Timer" enabled="true"> - <stringProp name="ConstantTimer.delay">200</stringProp> - </ConstantTimer> - <hashTree/> <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Check PdpGroup Query" enabled="true"> <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> <collectionProp name="Arguments.arguments"/> @@ -721,14 +15554,14 @@ if (prev.getResponseCode() == '200') { res = jsonSlurper.parseText(prev.getResponseDataAsString()); assert res instanceof Map; - assert res.groups.size > 0; + assert res.groups.size == 1; assert res.groups[0].pdpGroupState== 'ACTIVE'; } </stringProp> </JSR223Assertion> <hashTree/> </hashTree> - <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Deploy Policy" enabled="true"> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Deploy defaultDomain Policy" enabled="true"> <boolProp name="HTTPSampler.postBodyRaw">true</boolProp> <elementProp name="HTTPsampler.Arguments" elementType="Arguments"> <collectionProp name="Arguments.arguments"> @@ -737,8 +15570,8 @@ if (prev.getResponseCode() == '200') { <stringProp name="Argument.value">{
 "policies" : [
 {
 - "policy-id": "onap.policies.controlloop.operational.apex.Sampledomain",
 - "policy-version": 1
 + "policy-id": "operational.apex.stabilityTestDefaultDomain",
 + "policy-version": "1.0.0"
 }
 ]
 }</stringProp> @@ -772,11 +15605,223 @@ if (prev.getResponseCode() == '200') { </ResponseAssertion> <hashTree/> </hashTree> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Create/Update PDP Group" enabled="true"> + <boolProp name="HTTPSampler.postBodyRaw">true</boolProp> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments"> + <collectionProp name="Arguments.arguments"> + <elementProp name="" elementType="HTTPArgument"> + <boolProp name="HTTPArgument.always_encode">false</boolProp> + <stringProp name="Argument.value">{
 + "groups": [
 + {
 + "name": "sampleGroup",
 + "pdpGroupState": "ACTIVE",
 + "properties": {},
 + "pdpSubgroups": [
 + {
 + "pdpType": "apex",
 + "desiredInstanceCount": 2,
 + "properties": {},
 + "supportedPolicyTypes": [
 + {
 + "name": "onap.policies.controlloop.operational.Apex",
 + "version": "1.0.0"
 + }
 + ],
 + "policies": []
 + }
 + ]
 + }
 + ]
 +}</stringProp> + <stringProp name="Argument.metadata">=</stringProp> + </elementProp> + </collectionProp> + </elementProp> + <stringProp name="HTTPSampler.domain">${PAP_HOST}</stringProp> + <stringProp name="HTTPSampler.port">${PAP_PORT}</stringProp> + <stringProp name="HTTPSampler.protocol">https</stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/policy/pap/v1/pdps/groups/batch</stringProp> + <stringProp name="HTTPSampler.method">POST</stringProp> + <boolProp name="HTTPSampler.follow_redirects">true</boolProp> + <boolProp name="HTTPSampler.auto_redirects">false</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="TestPlan.comments">create SampleGroup </stringProp> + </HTTPSamplerProxy> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="49586">200</stringProp> + </collectionProp> + <stringProp name="Assertion.custom_message"></stringProp> + <stringProp name="Assertion.test_field">Assertion.response_code</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <SystemSampler guiclass="SystemSamplerGui" testclass="SystemSampler" testname="OS Process Sampler" enabled="true"> + <boolProp name="SystemSampler.checkReturnCode">false</boolProp> + <stringProp name="SystemSampler.expectedReturnCode">0</stringProp> + <stringProp name="SystemSampler.command">${DIR}pdp_sim_startup.sh</stringProp> + <elementProp name="SystemSampler.arguments" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"> + <elementProp name="" elementType="Argument"> + <stringProp name="Argument.name"></stringProp> + <stringProp name="Argument.value">${CONFIG_DIR}</stringProp> + <stringProp name="Argument.metadata">=</stringProp> + </elementProp> + </collectionProp> + </elementProp> + <elementProp name="SystemSampler.environment" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="SystemSampler.directory">${DIR}</stringProp> + </SystemSampler> + <hashTree> + <ConstantTimer guiclass="ConstantTimerGui" testclass="ConstantTimer" testname="Constant Timer" enabled="true"> + <stringProp name="ConstantTimer.delay">5000</stringProp> + </ConstantTimer> + <hashTree/> + </hashTree> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Check PdpGroup Query" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain">${PAP_HOST}</stringProp> + <stringProp name="HTTPSampler.port">${PAP_PORT}</stringProp> + <stringProp name="HTTPSampler.protocol">https</stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/policy/pap/v1/pdps</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">true</boolProp> + <boolProp name="HTTPSampler.auto_redirects">false</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="TestPlan.comments">Check PdpGroup Query</stringProp> + </HTTPSamplerProxy> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="49586">200</stringProp> + </collectionProp> + <stringProp name="Assertion.custom_message"></stringProp> + <stringProp name="Assertion.test_field">Assertion.response_code</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + <JSR223Assertion guiclass="TestBeanGUI" testclass="JSR223Assertion" testname="JSR223 Assertion" enabled="true"> + <stringProp name="scriptLanguage">groovy</stringProp> + <stringProp name="parameters"></stringProp> + <stringProp name="filename"></stringProp> + <stringProp name="cacheKey">true</stringProp> + <stringProp name="script">import groovy.json.JsonSlurper; + +def res = []; +if (prev.getResponseCode() == '200') { + def jsonSlurper = new JsonSlurper(); + res = jsonSlurper.parseText(prev.getResponseDataAsString()); + + assert res instanceof Map; + assert res.groups.size == 2; + + for(int groupSize=0;groupSize<res.groups.size;groupSize++){ + + + for(int subGrpSize=0;subGrpSize<res.groups.pdpSubgroups.size;subGrpSize++){ + + def pdpSubGrp=res.groups[0].pdpSubgroups; + + for(int supportedPolicyTypesSize=0;supportedPolicyTypesSize<pdpSubGrp[subGrpSize].supportedPolicyTypes.size;supportedPolicyTypesSize++){ + + if(pdpSubGrp[subGrpSize].supportedPolicyTypes[supportedPolicyTypesSize].name =='onap.policies.controlloop.operational.Apex'){ + + assert pdpSubGrp[subGrpSize].pdpInstances.size > 0; + if (res.groups[0].name == 'defaultGroup') + assert pdpSubGrp[subGrpSize].policies[0].name == 'operational.apex.stabilityTestDefaultDomain'; + }else if(res.groups[0].name == 'sampleGroup' ){ + assert pdpSubGrp[subGrpSize].policies.size == 0; + + } + + } + } + + } +} +</stringProp> + </JSR223Assertion> + <hashTree/> + </hashTree> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Deployment Update sampleDomain" enabled="true"> + <boolProp name="HTTPSampler.postBodyRaw">true</boolProp> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments"> + <collectionProp name="Arguments.arguments"> + <elementProp name="" elementType="HTTPArgument"> + <boolProp name="HTTPArgument.always_encode">false</boolProp> + <stringProp name="Argument.value">{
 + "groups": [
 + {
 + "name": "sampleGroup",
 + "deploymentSubgroups": [
 + {
 + "pdpType": "apex",
 + "action": "POST",
 + "policies": [
 + {
 + "name": "operational.apex.stabilityTestSampleDomain",
 + "version": "1.0.0"
 + }
 + ]
 + }
 + ]
 + }
 + ]
 +}</stringProp> + <stringProp name="Argument.metadata">=</stringProp> + </elementProp> + </collectionProp> + </elementProp> + <stringProp name="HTTPSampler.domain">${PAP_HOST}</stringProp> + <stringProp name="HTTPSampler.port">${PAP_PORT}</stringProp> + <stringProp name="HTTPSampler.protocol">https</stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/policy/pap/v1/pdps/deployments/batch</stringProp> + <stringProp name="HTTPSampler.method">POST</stringProp> + <boolProp name="HTTPSampler.follow_redirects">true</boolProp> + <boolProp name="HTTPSampler.auto_redirects">false</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + </HTTPSamplerProxy> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="49586">200</stringProp> + </collectionProp> + <stringProp name="Assertion.custom_message"></stringProp> + <stringProp name="Assertion.test_field">Assertion.response_code</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> <ConstantTimer guiclass="ConstantTimerGui" testclass="ConstantTimer" testname="Constant Timer" enabled="true"> <stringProp name="ConstantTimer.delay">500</stringProp> </ConstantTimer> <hashTree/> - <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Undeploy Policy" enabled="true"> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Check PdpGroup Query" enabled="true"> <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> <collectionProp name="Arguments.arguments"/> </elementProp> @@ -784,8 +15829,8 @@ if (prev.getResponseCode() == '200') { <stringProp name="HTTPSampler.port">${PAP_PORT}</stringProp> <stringProp name="HTTPSampler.protocol">https</stringProp> <stringProp name="HTTPSampler.contentEncoding"></stringProp> - <stringProp name="HTTPSampler.path">policy/pap/v1/pdps/policies/onap.policies.controlloop.operational.apex.Sampledomain</stringProp> - <stringProp name="HTTPSampler.method">DELETE</stringProp> + <stringProp name="HTTPSampler.path">/policy/pap/v1/pdps</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> <boolProp name="HTTPSampler.follow_redirects">true</boolProp> <boolProp name="HTTPSampler.auto_redirects">false</boolProp> <boolProp name="HTTPSampler.use_keepalive">true</boolProp> @@ -793,6 +15838,7 @@ if (prev.getResponseCode() == '200') { <stringProp name="HTTPSampler.embedded_url_re"></stringProp> <stringProp name="HTTPSampler.connect_timeout"></stringProp> <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="TestPlan.comments">Check PdpGroup Query</stringProp> </HTTPSamplerProxy> <hashTree> <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true"> @@ -805,12 +15851,276 @@ if (prev.getResponseCode() == '200') { <intProp name="Assertion.test_type">1</intProp> </ResponseAssertion> <hashTree/> + <JSR223Assertion guiclass="TestBeanGUI" testclass="JSR223Assertion" testname="JSR223 Assertion" enabled="true"> + <stringProp name="scriptLanguage">groovy</stringProp> + <stringProp name="parameters"></stringProp> + <stringProp name="filename"></stringProp> + <stringProp name="cacheKey">true</stringProp> + <stringProp name="script">import groovy.json.JsonSlurper; + +def res = []; +if (prev.getResponseCode() == '200') { + def jsonSlurper = new JsonSlurper(); + res = jsonSlurper.parseText(prev.getResponseDataAsString()); + + assert res instanceof Map; + assert res.groups.size == 2; + for(int groupSize=0;groupSize<res.groups.size;groupSize++){ + + for(int subGrpSize=0;subGrpSize<res.groups.pdpSubgroups.size;subGrpSize++){ + + def pdpSubGrp=res.groups[0].pdpSubgroups; + + for(int supportedPolicyTypesSize=0;supportedPolicyTypesSize<pdpSubGrp[subGrpSize].supportedPolicyTypes.size;supportedPolicyTypesSize++){ + + if(pdpSubGrp[subGrpSize].supportedPolicyTypes[supportedPolicyTypesSize].name =='onap.policies.controlloop.operational.Apex'){ + + if (res.groups[0].name == 'defaultGroup') + assert pdpSubGrp[subGrpSize].policies[0].name == 'operational.apex.stabilityTestDefaultDomain'; + }else if(res.groups[0].name == 'sampleGroup' ){ + assert pdpSubGrp[subGrpSize].policies[0].name == 'operational.apex.stabilityTestSampleDomain'; + } + + } + } + + } +} +</stringProp> + </JSR223Assertion> + <hashTree/> </hashTree> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Check Deployed Policies" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain">${PAP_HOST}</stringProp> + <stringProp name="HTTPSampler.port">${PAP_PORT}</stringProp> + <stringProp name="HTTPSampler.protocol">https</stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/policy/pap/v1/policies/deployed</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">true</boolProp> + <boolProp name="HTTPSampler.auto_redirects">false</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="TestPlan.comments">Query Deployed policies</stringProp> + </HTTPSamplerProxy> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="49586">200</stringProp> + </collectionProp> + <stringProp name="Assertion.custom_message"></stringProp> + <stringProp name="Assertion.test_field">Assertion.response_code</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + <JSR223Assertion guiclass="TestBeanGUI" testclass="JSR223Assertion" testname="JSR223 Assertion" enabled="true"> + <stringProp name="scriptLanguage">groovy</stringProp> + <stringProp name="parameters"></stringProp> + <stringProp name="filename"></stringProp> + <stringProp name="cacheKey">true</stringProp> + <stringProp name="script">import groovy.json.JsonSlurper; + +def res = []; +if (prev.getResponseCode() == '200') { + def jsonSlurper = new JsonSlurper(); + res = jsonSlurper.parseText(prev.getResponseDataAsString()); + assert res.size >1 ; + +} +</stringProp> + </JSR223Assertion> + <hashTree/> + </hashTree> + <SystemSampler guiclass="SystemSamplerGui" testclass="SystemSampler" testname="OS Process Sampler" enabled="true"> + <boolProp name="SystemSampler.checkReturnCode">false</boolProp> + <stringProp name="SystemSampler.expectedReturnCode">0</stringProp> + <stringProp name="SystemSampler.command">${DIR}pdp_sim_stop.sh</stringProp> + <elementProp name="SystemSampler.arguments" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <elementProp name="SystemSampler.environment" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="SystemSampler.directory">${DIR}</stringProp> + </SystemSampler> + <hashTree/> <ConstantTimer guiclass="ConstantTimerGui" testclass="ConstantTimer" testname="Constant Timer" enabled="true"> <stringProp name="ConstantTimer.delay">500</stringProp> </ConstantTimer> <hashTree/> - <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Change State to PASSIVE" enabled="true"> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Undeploy Policy sampleDomain" enabled="true"> + <boolProp name="HTTPSampler.postBodyRaw">true</boolProp> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments"> + <collectionProp name="Arguments.arguments"> + <elementProp name="" elementType="HTTPArgument"> + <boolProp name="HTTPArgument.always_encode">false</boolProp> + <stringProp name="Argument.value">{
 + "groups": [
 + {
 + "name": "sampleGroup",
 + "deploymentSubgroups": [
 + {
 + "pdpType": "apex",
 + "action": "DELETE",
 + "policies": [
 + {
 + "name": "operational.apex.stabilityTestSampleDomain",
 + "version": "1.0.0"
 + }
 + ]
 + }
 + ]
 + }
 + ]
 +}</stringProp> + <stringProp name="Argument.metadata">=</stringProp> + </elementProp> + </collectionProp> + </elementProp> + <stringProp name="HTTPSampler.domain">${PAP_HOST}</stringProp> + <stringProp name="HTTPSampler.port">${PAP_PORT}</stringProp> + <stringProp name="HTTPSampler.protocol">https</stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/policy/pap/v1/pdps/deployments/batch</stringProp> + <stringProp name="HTTPSampler.method">POST</stringProp> + <boolProp name="HTTPSampler.follow_redirects">true</boolProp> + <boolProp name="HTTPSampler.auto_redirects">false</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + </HTTPSamplerProxy> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="49586">200</stringProp> + </collectionProp> + <stringProp name="Assertion.custom_message"></stringProp> + <stringProp name="Assertion.test_field">Assertion.response_code</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Undeploy Default Policy" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain">${PAP_HOST}</stringProp> + <stringProp name="HTTPSampler.port">${PAP_PORT}</stringProp> + <stringProp name="HTTPSampler.protocol">https</stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">policy/pap/v1/pdps/policies/operational.apex.stabilityTestDefaultDomain</stringProp> + <stringProp name="HTTPSampler.method">DELETE</stringProp> + <boolProp name="HTTPSampler.follow_redirects">true</boolProp> + <boolProp name="HTTPSampler.auto_redirects">false</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + </HTTPSamplerProxy> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="49586">200</stringProp> + </collectionProp> + <stringProp name="Assertion.custom_message"></stringProp> + <stringProp name="Assertion.test_field">Assertion.response_code</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Change State to PASSIVE(sampleGroup)" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain">${PAP_HOST}</stringProp> + <stringProp name="HTTPSampler.port">${PAP_PORT}</stringProp> + <stringProp name="HTTPSampler.protocol">https</stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">policy/pap/v1/pdps/groups/sampleGroup?state=PASSIVE</stringProp> + <stringProp name="HTTPSampler.method">PUT</stringProp> + <boolProp name="HTTPSampler.follow_redirects">true</boolProp> + <boolProp name="HTTPSampler.auto_redirects">false</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + </HTTPSamplerProxy> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="49586">200</stringProp> + </collectionProp> + <stringProp name="Assertion.custom_message"></stringProp> + <stringProp name="Assertion.test_field">Assertion.response_code</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Delete PdpGroup SampleGroup" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain">${PAP_HOST}</stringProp> + <stringProp name="HTTPSampler.port">${PAP_PORT}</stringProp> + <stringProp name="HTTPSampler.protocol">https</stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/policy/pap/v1/pdps/groups/sampleGroup</stringProp> + <stringProp name="HTTPSampler.method">DELETE</stringProp> + <boolProp name="HTTPSampler.follow_redirects">true</boolProp> + <boolProp name="HTTPSampler.auto_redirects">false</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="TestPlan.comments">Delete PdpGroup </stringProp> + </HTTPSamplerProxy> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="49586">200</stringProp> + </collectionProp> + <stringProp name="Assertion.custom_message"></stringProp> + <stringProp name="Assertion.test_field">Assertion.response_code</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + <JSR223Assertion guiclass="TestBeanGUI" testclass="JSR223Assertion" testname="JSR223 Assertion" enabled="false"> + <stringProp name="scriptLanguage">groovy</stringProp> + <stringProp name="parameters"></stringProp> + <stringProp name="filename"></stringProp> + <stringProp name="cacheKey">true</stringProp> + <stringProp name="script">import groovy.json.JsonSlurper; + +def res = []; +if (prev.getResponseCode() == '200') { + def jsonSlurper = new JsonSlurper(); + res = jsonSlurper.parseText(prev.getResponseDataAsString()); + + assert res instanceof Map; + assert res.groups.size > 0; + assert res.groups[0].pdpGroupState== 'PASSIVE'; +} +</stringProp> + </JSR223Assertion> + <hashTree/> + </hashTree> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Change State to PASSIVE(defaultGroup)" enabled="true"> <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> <collectionProp name="Arguments.arguments"/> </elementProp> @@ -840,10 +16150,6 @@ if (prev.getResponseCode() == '200') { </ResponseAssertion> <hashTree/> </hashTree> - <ConstantTimer guiclass="ConstantTimerGui" testclass="ConstantTimer" testname="Constant Timer" enabled="true"> - <stringProp name="ConstantTimer.delay">200</stringProp> - </ConstantTimer> - <hashTree/> <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Check PdpGroup Query" enabled="true"> <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> <collectionProp name="Arguments.arguments"/> @@ -887,8 +16193,9 @@ if (prev.getResponseCode() == '200') { res = jsonSlurper.parseText(prev.getResponseDataAsString()); assert res instanceof Map; - assert res.groups.size > 0; + assert res.groups.size ==1; assert res.groups[0].pdpGroupState== 'PASSIVE'; + } </stringProp> </JSR223Assertion> @@ -906,9 +16213,70 @@ if (prev.getResponseCode() == '200') { <boolProp name="ThreadGroup.scheduler">false</boolProp> <stringProp name="ThreadGroup.duration"></stringProp> <stringProp name="ThreadGroup.delay"></stringProp> + <boolProp name="ThreadGroup.same_user_on_next_iteration">true</boolProp> </PostThreadGroup> <hashTree> - <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Delete Policy" enabled="true"> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Change State to PASSIVE" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain">${PAP_HOST}</stringProp> + <stringProp name="HTTPSampler.port">${PAP_PORT}</stringProp> + <stringProp name="HTTPSampler.protocol">https</stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">policy/pap/v1/pdps/groups/defaultGroup?state=PASSIVE</stringProp> + <stringProp name="HTTPSampler.method">PUT</stringProp> + <boolProp name="HTTPSampler.follow_redirects">true</boolProp> + <boolProp name="HTTPSampler.auto_redirects">false</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + </HTTPSamplerProxy> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="49586">200</stringProp> + </collectionProp> + <stringProp name="Assertion.custom_message"></stringProp> + <stringProp name="Assertion.test_field">Assertion.response_code</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Delete Policy defaultDomain" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain">${API_HOST}</stringProp> + <stringProp name="HTTPSampler.port">${API_PORT}</stringProp> + <stringProp name="HTTPSampler.protocol">https</stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/policy/api/v1/policytypes/onap.policies.controlloop.operational.Apex/versions/1.0.0/policies/operational.apex.stabilityTestDefaultDomain/versions/1.0.0</stringProp> + <stringProp name="HTTPSampler.method">DELETE</stringProp> + <boolProp name="HTTPSampler.follow_redirects">true</boolProp> + <boolProp name="HTTPSampler.auto_redirects">false</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + </HTTPSamplerProxy> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="49586">200</stringProp> + </collectionProp> + <stringProp name="Assertion.custom_message"></stringProp> + <stringProp name="Assertion.test_field">Assertion.response_code</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Delete Policy sampleDomain" enabled="true"> <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> <collectionProp name="Arguments.arguments"/> </elementProp> @@ -916,7 +16284,7 @@ if (prev.getResponseCode() == '200') { <stringProp name="HTTPSampler.port">${API_PORT}</stringProp> <stringProp name="HTTPSampler.protocol">https</stringProp> <stringProp name="HTTPSampler.contentEncoding"></stringProp> - <stringProp name="HTTPSampler.path">/policy/api/v1/policytypes/onap.policies.controlloop.operational.Apex/versions/1.0.0/policies/onap.policies.controlloop.operational.apex.Sampledomain/versions/1.0.0</stringProp> + <stringProp name="HTTPSampler.path">/policy/api/v1/policytypes/onap.policies.controlloop.operational.Apex/versions/1.0.0/policies/operational.apex.stabilityTestSampleDomain/versions/1.0.0</stringProp> <stringProp name="HTTPSampler.method">DELETE</stringProp> <boolProp name="HTTPSampler.follow_redirects">true</boolProp> <boolProp name="HTTPSampler.auto_redirects">false</boolProp> @@ -1003,7 +16371,7 @@ if (prev.getResponseCode() == '200') { <connectTime>true</connectTime> </value> </objProp> - <stringProp name="filename">C:\Users\eramkve\Desktop\stability.log</stringProp> + <stringProp name="filename">/home/adityap/pap_stability/summary.log</stringProp> </ResultCollector> <hashTree/> <ResultCollector guiclass="ViewResultsFullVisualizer" testclass="ResultCollector" testname="View Results Tree" enabled="true"> @@ -1040,7 +16408,7 @@ if (prev.getResponseCode() == '200') { <connectTime>true</connectTime> </value> </objProp> - <stringProp name="filename">C:\Users\eramkve\Desktop\stability.log</stringProp> + <stringProp name="filename">/home/adityap/pap_stability/resultTable.log</stringProp> </ResultCollector> <hashTree/> <ResultCollector guiclass="TableVisualizer" testclass="ResultCollector" testname="View Results in Table" enabled="true"> @@ -1077,7 +16445,7 @@ if (prev.getResponseCode() == '200') { <connectTime>true</connectTime> </value> </objProp> - <stringProp name="filename">C:\Users\eramkve\Desktop\stability.log</stringProp> + <stringProp name="filename">/home/adityap/pap_stability/resultTree.log</stringProp> </ResultCollector> <hashTree/> </hashTree> |