From 0cf967c0239a8ab9c8b8831b700b72d9a08f7b03 Mon Sep 17 00:00:00 2001 From: liamfallon Date: Fri, 16 Oct 2020 13:09:11 +0100 Subject: Remove apex asciidoc documents Apex documentation has now all been ported to use the ONAP recommended rst format. This review removes the old asciidoc documents. Issue-ID: POLICY-2824 Change-Id: I562bd344cb7d6ff36e7d54bdb8f95e3b656468f8 Signed-off-by: liamfallon --- .../fragments/apex-policy-model/concept-logic.adoc | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 src/site-docs/adoc/fragments/apex-policy-model/concept-logic.adoc (limited to 'src/site-docs/adoc/fragments/apex-policy-model/concept-logic.adoc') diff --git a/src/site-docs/adoc/fragments/apex-policy-model/concept-logic.adoc b/src/site-docs/adoc/fragments/apex-policy-model/concept-logic.adoc deleted file mode 100644 index 250f8accf..000000000 --- a/src/site-docs/adoc/fragments/apex-policy-model/concept-logic.adoc +++ /dev/null @@ -1,30 +0,0 @@ -// -// ============LICENSE_START======================================================= -// Copyright (C) 2016-2018 Ericsson. All rights reserved. -// ================================================================================ -// This file is licensed under the CREATIVE COMMONS ATTRIBUTION 4.0 INTERNATIONAL LICENSE -// Full license text at https://creativecommons.org/licenses/by/4.0/legalcode -// -// SPDX-License-Identifier: CC-BY-4.0 -// ============LICENSE_END========================================================= -// -// @author Sven van der Meer (sven.van.der.meer@ericsson.com) -// - -== Concept: Logic - -The __Logic__ concept instance holds the actual programmed task logic for a task defined in a __Task__ concept or the programmed task selection logic for a state defined in a __State__ concept. -It is keyed with a `ReferenceKey` key, which references the task or state that owns the logic. -The __LocalName__ field of the Logic concept is the name of the logic. - -The __LogicCode__ field of a Logic concept definition is a string that holds the program code that is to be executed at run time. -The __LogicType__ field defines the language of the code. -The standard values are the logic languages supported by APEX: - link:https://en.wikipedia.org/wiki/JavaScript[JAVASCRIPT], - link:https://java.com/en/[JAVA], - link:http://www.jython.org/[JYTHON], - link:http://jruby.org/[JRUBY], or - link:https://en.wikibooks.org/wiki/Transwiki:MVEL_Language_Guide[MVEL]. - -The APEX engine uses the __LogicType__ field value to decide which language interpreter to use for a task and then sends the logic defined in the __LogicCode__ field to that interpreter. - -- cgit 1.2.3-korg