From b87ab1696010ca0bbed5db99c140cf908722df57 Mon Sep 17 00:00:00 2001 From: liamfallon Date: Wed, 11 Mar 2020 17:17:14 +0000 Subject: Convert examples to Rhino Javascript format All examples are converted to Rhino Javascript from Nashorn Javascript. Issue-ID: POLICY-2106 Change-Id: Ia6fec5b57b1e6131799b4b069968e4766ce54c96 Signed-off-by: liamfallon --- .../src/main/resources/logic/NomadicEventSuccessTask.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'examples/examples-onap-bbs/src/main/resources/logic/NomadicEventSuccessTask.js') diff --git a/examples/examples-onap-bbs/src/main/resources/logic/NomadicEventSuccessTask.js b/examples/examples-onap-bbs/src/main/resources/logic/NomadicEventSuccessTask.js index 36b21b8f4..17234101e 100644 --- a/examples/examples-onap-bbs/src/main/resources/logic/NomadicEventSuccessTask.js +++ b/examples/examples-onap-bbs/src/main/resources/logic/NomadicEventSuccessTask.js @@ -1,6 +1,7 @@ /* * ============LICENSE_START======================================================= * Copyright (C) 2019 Huawei. 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. @@ -17,8 +18,6 @@ * SPDX-License-Identifier: Apache-2.0 * ============LICENSE_END========================================================= */ -load("nashorn:mozilla_compat.js"); -importClass(org.apache.avro.Schema); executor.logger.info("Begin Execution NomadicEventSuccess.js"); executor.logger.info(executor.subject.id); @@ -32,16 +31,17 @@ executor.logger.info(executor.outFields); executor.logger.info(executor.inFields); result = NomadicONTContext.get("result"); +var returnValue = true; -if (result === "SUCCESS") { - returnValue = executor.isTrue; +if (result == "SUCCESS") { executor.outFields.put("result", "SUCCCESS"); executor.logger.info("BBS policy Execution Done"); } else { executor.logger.info("BBS policy Execution Failed"); executor.outFields.put("result", "FAILURE"); - returnValue = executor.isFalse; + returnValue = false; } -var returnValue = executor.isTrue; -executor.logger.info("End Execution NomadicEventSuccess.js"); \ No newline at end of file +executor.logger.info("End Execution NomadicEventSuccess.js"); + +returnValue; -- cgit 1.2.3-korg