/*
* ============LICENSE_START=======================================================
* Copyright (C) 2016-2018 Ericsson. All rights reserved.
+ * Modifications 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.
executor.logger.info(vcpeClosedLoopStatus);
var aaiInfo = vcpeClosedLoopStatus.get("AAI");
+var returnValue = true;
if (aaiInfo.get("vserverName") == null) {
executor.message = "the field vserver.vserver-name must exist in the onset control loop event";
executor.logger.warn(executor.message);
- var returnValue = executor.isFalse;
+ returnValue = false;
}
else if (aaiInfo.get("genericVnfVnfId") == null && aaiInfo.get("genericVnfVnfName") == null) {
executor.message = "either the field generic-vnf.vnf-id or generic-vnf.vnf-name must exist"
+ " in the onset control loop event";
executor.logger.warn(executor.message);
- var returnValue = executor.isFalse;
+ returnValue = false;
}
else {
var restManager = new org.onap.policy.rest.RestManager;
// We need to instantiate the type in order to trigger the static JAXB handling
// in the AaiCqResponse class
- var aaiCqResponseType = Java.type("org.onap.policy.aai.AaiCqResponse");
+ var aaiCqResponseType = org.onap.policy.aai.AaiCqResponse;
var aaiResponse = aaiManager.getCustomQueryResponse(
"http://localhost:54321/OnapVCpeSim/sim",
executor.outFields.put("vnfID", executor.inFields.get("vnfID"));
executor.logger.info(executor.outFields);
-
- var returnValue = executor.isTrue;
}
+
+returnValue;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2016-2018 Ericsson. All rights reserved.
+ * Modifications 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=========================================================
*/
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2016-2018 Ericsson. All rights reserved.
+ * Modifications 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.
- *
+ *
* APPC LCM Response code: 100 ACCEPTED
* 200 ERROR UNEXPECTED ERROR means failure
* 312 REJECTED DUPLICATE REQUEST
- * 400 SUCCESS
+ * 400 SUCCESS
*
* Note: Sometimes the corelationId has a -1 at the tail, need to get rid of it when present.
- *
+ *
* SPDX-License-Identifier: Apache-2.0
* ============LICENSE_END=========================================================
*/
+ executor.getContextAlbum("RequestIDVNFIDAlbum").size());
executor.logger.info("vnfID = " + vnfID);
-var returnValue = executor.isTrue;
+var returnValue = true;
if (vnfID != null) {
var vcpeClosedLoopStatus = executor.getContextAlbum(
} else {
executor.message = "VNF ID not found in context album for request ID "
+ requestIDString;
- returnValue = executor.isFalse;
+ returnValue = false
}
executor.logger.info(executor.outFields);
+
+returnValue;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2016-2018 Ericsson. All rights reserved.
+ * Modifications 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=========================================================
*/
executor.logger.info(executor.subject.id);
executor.logger.info(executor.inFields);
-var vcpeClosedLoopStatus = null;
+var vcpeClosedLoopStatus = null;
if( executor.inFields.get("vnfID") == null) {
executor.logger.info("AbatedTask: vnfID is null");
var vnfName = executor.inFields.get("vnfName");
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
clNotification.getAai().put("generic-vnf.vnf-type", aaiInfo.get("genericVnfVnfType"));
clNotification.getAai().put("generic-vnf.in-maint", aaiInfo.get("genericVnfInMaint"));
clNotification.getAai().put("generic-vnf.service-id", aaiInfo.get("genericVnfServiceId"));
+
if(vnfID != null) {
clNotification.getAai().put("generic-vnf.vnf-id", aaiInfo.get("genericVnfVnfId"));
}
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2016-2018 Ericsson. All rights reserved.
+ * Modifications 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=========================================================
*/
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2016-2018 Ericsson. All rights reserved.
+ * Modifications 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.
executor.logger.info(executor.subject.id);
executor.logger.info(executor.inFields);
-var clEventType = Java.type("org.onap.policy.controlloop.VirtualControlLoopEvent");
-var longType = Java.type("java.lang.Long");
-var uuidType = Java.type("java.util.UUID");
+var clEventType = org.onap.policy.controlloop.VirtualControlLoopEvent;
+var longType = java.lang.Long;
+var uuidType = java.util.UUID;
var clEvent = executor.inFields.get("VirtualControlLoopEvent");
executor.logger.info(executor.outFields);
}
-returnValue = executor.isTrue;
+true;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2016-2018 Ericsson. All rights reserved.
+ * Modifications 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=========================================================
*/
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2016-2018 Ericsson. All rights reserved.
+ * Modifications 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=========================================================
*/
executor.logger.info(vcpeClosedLoopStatus);
var guardResult = executor.inFields.get("decision");
+var returnValue = true;
-if (guardResult === "PERMIT") {
+if (guardResult == "PERMIT") {
vcpeClosedLoopStatus.put("notification", "OPERATION: GUARD_PERMIT");
-} else if (guardResult === "DENY") {
+} else if (guardResult == "DENY") {
vcpeClosedLoopStatus.put("notification", "OPERATION: GUARD_DENY");
} else {
executor.message = "guard result must be either \"PERMIT\" or \"DENY\"";
- returnValue = executor.FALSE;
+ returnValue = false;
}
-var uuidType = Java.type("java.util.UUID");
+var uuidType = java.util.UUID;
var requestID = uuidType.fromString(vcpeClosedLoopStatus.get("requestID"));
executor.outFields.put("requestID", requestID);
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+
+returnValue;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2016-2018 Ericsson. All rights reserved.
+ * Modifications 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=========================================================
*/
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2016-2018 Ericsson. All rights reserved.
+ * Modifications 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=========================================================
*/
executor.logger.info(executor.subject.id);
executor.logger.info(executor.inFields);
-var returnValue = executor.isTrue;
+var returnValue = true;
var status = null;
if( executor.inFields.get("vnfID") == null) {
status = vcpeClosedLoopStatus.get("closedLoopEventStatus").toString();
}
-var returnValue = executor.isTrue;
-
-if (status === "ONSET") {
+if (status == "ONSET") {
executor.subject.getTaskKey("GuardRequestTask").copyTo(executor.selectedTask);
-} else if (status === "ABATED") {
+} else if (status == "ABATED") {
executor.subject.getTaskKey("AbatedTask").copyTo(executor.selectedTask);
onsetFlag = executor.isFalse;
} else {
executor.message = "closedLoopEventStatus is \"" + status + "\", it must be either \"ONSET\" or \"ABATED\"";
- returnValue = executor.isFalse;
+ returnValue = false;
}
executor.logger.info("ReceiveEventPolicyOnsetOrAbatedStateTSL State Selected Task:" + executor.selectedTask);
+
+returnValue;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2016-2018 Ericsson. All rights reserved.
+ * Modifications 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=========================================================
*/
var guardResult = vcpeClosedLoopStatus.get("notification");
-if (guardResult === "OPERATION: GUARD_PERMIT") {
+if (guardResult == "OPERATION: GUARD_PERMIT") {
executor.subject.getTaskKey("APPCRestartVNFRequestTask").copyTo(executor.selectedTask);
} else {
executor.subject.getTaskKey("DeniedTask").copyTo(executor.selectedTask);
executor.logger.info("RestartAPPCRequestPolicyPermitOrDenyTSL State Selected Task:" + executor.selectedTask);
-var returnValue = executor.isTrue;
+true;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
executor.logger.info("vnfId=" + vnfId + ", serviceId=" + serviceId + ", blackFlag=" + blackFlag);
-if (blackFlag != null && blackFlag === true) {
- vcpeClosedLoopStatus.put("notificationTime", java.lang.System.currentTimeMillis());
+if (blackFlag != null && blackFlag == true) {
+ vcpeClosedLoopStatus.put("notificationTime", java.lang.Long.valueOf(Date.now()));
vcpeClosedLoopStatus.put("notification", "BLACKLIST");
var message = vcpeClosedLoopStatus.get("message");
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
+
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
executor.logger.info("vnfId=" + vnfId + ", blackFlag=" + blackFlag);
-if (blackFlag != null && blackFlag === true) {
+if (blackFlag != null && blackFlag == true) {
var vcpeClosedLoopStatus = executor.getContextAlbum("ControlLoopStatusAlbum").get(vnfId);
- vcpeClosedLoopStatus.put("notificationTime", java.lang.System.currentTimeMillis());
+ vcpeClosedLoopStatus.put("notificationTime", java.lang.Long.valueOf(Date.now()));
vcpeClosedLoopStatus.put("notification", "BLACKLIST");
var message = vcpeClosedLoopStatus.get("message");
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
executor.logger.info("vnfId=" + vnfId + ", vServerId=" + vServerId + ", blackFlag=" + blackFlag);
-if (blackFlag != null && blackFlag === true) {
- vcpeClosedLoopStatus.put("notificationTime", java.lang.System.currentTimeMillis());
+if (blackFlag != null && blackFlag == true) {
+ vcpeClosedLoopStatus.put("notificationTime", java.lang.Long.valueOf(Date.now()));
vcpeClosedLoopStatus.put("notification", "BLACKLIST");
var message = vcpeClosedLoopStatus.get("message");
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
+
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
var target = executor.inFields.get("target");
var black = executor.inFields.get("black");
-var returnValue = executor.isTrue;
+var returnValue = true;
-if (targetType === "VNF") {
+if (targetType == "VNF") {
executor.getContextAlbum("VnfIdWhiteBlackListAlbum").put(target, black);
executor.logger.info("added VNF ID \"" + target + "\" with black flag \"" + black + "\" to VNF ID list");
}
-else if (targetType === "Service") {
+else if (targetType == "Service") {
executor.getContextAlbum("ServiceIdWhiteBlackListAlbum").put(target, black);
executor.logger.info("added Service ID \"" + target + "\" with black flag \"" + black + "\" to Service ID list");
}
-else if (targetType === "VServer") {
+else if (targetType == "VServer") {
executor.getContextAlbum("VServerIdWhiteBlackListAlbum").put(target, black);
executor.logger.info("added VServer ID \"" + target + "\" with black flag \"" + black + "\" to VServer ID list");
}
else {
executor.logger.warn("unknown target type \"" + targetType + "\" specified");
- returnValue = executor.isFalse;
+ returnValue = false;
}
+
+returnValue;
+
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
controllerRequestBodyInput.put("action_DasH_identifiers", new java.util.HashMap());
controllerRequestBodyInput.get("action_DasH_identifiers").put("vnf-id", executor.inFields.get("vnfID").toString());
-controllerRequestBodyInputCommonHeader.put("timestamp", java.lang.System.currentTimeMillis());
+controllerRequestBodyInputCommonHeader.put("timestamp", java.lang.Long.valueOf(Date.now()));
controllerRequestBodyInputCommonHeader.put("api_DasH_ver", "2.00");
controllerRequestBodyInputCommonHeader.put("originator_DasH_id", executor.inFields.get("requestID").toString());
controllerRequestBodyInputCommonHeader.put("request_DasH_id", executor.inFields.get("requestID").toString());
executor.inFields.get("vnfID"));
vcpeClosedLoopStatus.put("notification", "OPERATION");
-vcpeClosedLoopStatus.put("notificationTime", java.lang.System.currentTimeMillis());
+vcpeClosedLoopStatus.put("notificationTime", java.lang.Long.valueOf(Date.now()));
executor.outFields.put("ControllerRequest", controllerRequest);
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
+
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
var vnfID = executor.getContextAlbum("RequestIDVNFIDAlbum").get(requestIDString);
executor.logger.info("vnfID = " + vnfID);
-var returnValue = executor.isTrue;
+var returnValue = true
if (vnfID != null) {
var vcpeClosedLoopStatus = executor.getContextAlbum("ControlLoopStatusAlbum").get(vnfID.toString());
var requestId = java.util.UUID.fromString(vcpeClosedLoopStatus.get("requestID"));
- vcpeClosedLoopStatus.put("notificationTime", java.lang.System.currentTimeMillis());
+ vcpeClosedLoopStatus.put("notificationTime", java.lang.Long.valueOf(Date.now()));
var returnedCode = controllerResponse.get("body").get("output").get("status").get("code");
var responseStatus = null;
executor.logger.info("Got from APPC code: " + responseStatus);
- if (responseStatus === "SUCCESS") {
+ if (responseStatus == "SUCCESS") {
vcpeClosedLoopStatus.put("notification", "OPERATION_SUCCESS");
vcpeClosedLoopStatus.put("message", "vCPE restarted");
executor.getContextAlbum("RequestIDVNFIDAlbum").remove(requestIDString);
- } else if (responseStatus === "ACCEPTED" || responseStatus === "REJECT") {
+ } else if (responseStatus == "ACCEPTED" || responseStatus == "REJECT") {
executor.logger.info("Got ACCEPTED 100 or REJECT 312, keep the context, wait for next response. Code is: "
+ responseStatus);
} else {
executor.outFields.put("vnfID", vnfID);
} else {
executor.message = "VNF ID not found in context album for request ID " + requestIDString;
- returnValue = executor.isFalse;
+ returnValue = false;
}
executor.logger.info(executor.outFields);
+
+returnValue;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
executor.logger.info(executor.subject.id);
executor.logger.info(executor.inFields);
-var returnValue = executor.isTrue;
var status = null;
-if (executor.inFields.get("action") === "ControllerRequestAction") {
+if (executor.inFields.get("action") == "ControllerRequestAction") {
executor.subject.getTaskKey("DoControllerRequestActionTask").copyTo(executor.selectedTask);
} else {
executor.subject.getTaskKey("DoLogActionTask").copyTo(executor.selectedTask);
}
executor.logger.info("ReceiveEventPolicyOnsetOrAbatedStateTSL State Selected Task:" + executor.selectedTask);
+
+true;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
executor.logger.info(executor.subject.id);
executor.logger.info(executor.inFields);
-var utf8Type = Java.type("org.apache.avro.util.Utf8");
-var uuidType = Java.type("java.util.UUID");
+var utf8Type = org.apache.avro.util.Utf8;
+var uuidType = java.util.UUID;
var clEvent = executor.inFields.get("VirtualControlLoopEvent");
vcpeClosedLoopStatus.put("policyName", "ONAPvCPEPolicyModel");
vcpeClosedLoopStatus.put("policyVersion", "0.0.1");
vcpeClosedLoopStatus.put("notification", "ACTIVE");
- vcpeClosedLoopStatus.put("notificationTime", java.lang.System.currentTimeMillis());
+ vcpeClosedLoopStatus.put("notificationTime", java.lang.Long.valueOf(Date.now()));
vcpeClosedLoopStatus.put("message", "");
var aaiInfo = executor.getContextAlbum("ControlLoopStatusAlbum").getSchemaHelper().createNewSubInstance(
vcpeClosedLoopStatus.put("policyName", "ONAPvCPEPolicyModel");
vcpeClosedLoopStatus.put("policyVersion", "0.0.1");
vcpeClosedLoopStatus.put("notification", "ACTIVE");
- vcpeClosedLoopStatus.put("notificationTime", java.lang.System.currentTimeMillis());
+ vcpeClosedLoopStatus.put("notificationTime", java.lang.Long.valueOf(Date.now()));
vcpeClosedLoopStatus.put("message", "");
var aaiInfo = executor.getContextAlbum("ControlLoopStatusAlbum").getSchemaHelper().createNewSubInstance(
executor.logger.info(executor.outFields);
}
-var returnValue = executor.isTrue;
+true;
+
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
var eventList = executor.subject.getOutFieldSchemaHelper("ActionEventList").createNewInstance();
-var eventType = Java.type("org.onap.policy.apex.service.engine.event.ApexEvent");
+var eventType = org.onap.policy.apex.service.engine.event.ApexEvent;
var controllerRequestActionEvent = new eventType("ActionEvent", "0.0.1", "org.onap.policy.apex.onap.vcpe", "APEX",
"APEX");
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;
+
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
executor.logger.info(executor.subject.id);
executor.logger.info(executor.inFields);
-var returnValue = executor.isTrue;
+var returnValue = true;
if( executor.inFields.get("vnfID") == null) {
executor.logger.info("ControlLoopStatusAlbum: vnfID is null");
var status = vcpeClosedLoopStatus.get("closedLoopEventStatus").toString();
var notification = vcpeClosedLoopStatus.get("notification");
-var returnValue = executor.isTrue;
-
-if (notification != null && notification === "BLACKLIST") {
+if (notification != null && notification == "BLACKLIST") {
executor.subject.getTaskKey("StopAndLogTask").copyTo(executor.selectedTask);
}
else {
- if (status === "ONSET") {
+ if (status == "ONSET") {
executor.subject.getTaskKey("InitiateActionsTask").copyTo(executor.selectedTask);
- } else if (status === "ABATED") {
+ } else if (status == "ABATED") {
executor.subject.getTaskKey("StopAndLogTask").copyTo(executor.selectedTask);
} else {
executor.message = "closedLoopEventStatus is \"" + status + "\", it must be either \"ONSET\" or \"ABATED\"";
- returnValue = executor.isFalse;
+ returnValue = false;
}
}
executor.logger.info("ReceiveEventPolicyOnsetOrAbatedStateTSL State Selected Task:" + executor.selectedTask);
+
+returnValue;
/*
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications 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.
.get(executor.inFields.get("vnfID").toString());
}
-vcpeClosedLoopStatus.put("notificationTime", java.lang.System.currentTimeMillis());
+vcpeClosedLoopStatus.put("notificationTime", java.lang.Long.valueOf(Date.now()));
var message = vcpeClosedLoopStatus.get("message");
-if (message == null || message === "") {
+if (message == null || message == "") {
vcpeClosedLoopStatus.put("message", "situation has been abated");
}
else {
executor.logger.info(executor.outFields);
-var returnValue = executor.isTrue;
+true;