diff options
author | 2020-03-11 20:52:09 +0000 | |
---|---|---|
committer | 2020-03-11 20:52:09 +0000 | |
commit | 4e6bd1d02227591d1517245f5bda690ec4eb770e (patch) | |
tree | 2903208d905a385ed38e12d700881f00867b7e4b /examples/examples-onap-bbs/src/main/resources/logic/NomadicEventSuccessTask.js | |
parent | ee817eb18923cb1c0423f9f7d9ea93681dafd302 (diff) | |
parent | b87ab1696010ca0bbed5db99c140cf908722df57 (diff) |
Merge "Convert examples to Rhino Javascript format"
Diffstat (limited to 'examples/examples-onap-bbs/src/main/resources/logic/NomadicEventSuccessTask.js')
-rw-r--r-- | examples/examples-onap-bbs/src/main/resources/logic/NomadicEventSuccessTask.js | 14 |
1 files changed, 7 insertions, 7 deletions
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; |