Class CustomActionActionNode


  • public class CustomActionActionNode
    extends FlowNode
    Custom action action node.
    Since:
    12.1.0
    Version:
    $Revision: 23264 $ $Date: 2019-10-09 18:06:18 -0300 (Wed, 09 Oct 2019) $
    • Field Detail

      • nextNode

        protected final FlowNode nextNode
    • Constructor Detail

      • CustomActionActionNode

        public CustomActionActionNode​(org.json.JSONObject object,
                                      FlowEntry flowEntry)
        Creates a new instance with the given JSON configuration.
        Parameters:
        object - the config object.
        flowEntry - the flow.
        Since:
        12.1.0
      • CustomActionActionNode

        public CustomActionActionNode​(String id,
                                      String name,
                                      String className,
                                      FlowNode nextNode)
        Creates a new instance.
        Parameters:
        id - the identifier.
        name - the name.
        Since:
        12.1.0
    • Method Detail

      • toJSONObject

        public org.json.JSONObject toJSONObject()
        Description copied from class: FlowNode
        Returns the JSON representation of this node. This method is the counterpart of #FlowNode(JSONObject) constructor.
        Returns:
        the JSON representation of this node.
      • validateStateAndLog

        public boolean validateStateAndLog​(boolean checkAllNextNodes)
        Description copied from class: FlowNode
        To permit edition when JSON flow is saved incorrectly in data base, the flow node constructor by JSON parameter need allows to load flow node variables without exception when something already is wrong. So, to prevents exception on flow node execution and prevent to save flow when flow node is invalid state, this methods will check if all variables is OK and log otherwise.
        Specified by:
        validateStateAndLog in class FlowNode
        Parameters:
        checkAllNextNodes - check all next nodes nodes.
        Returns:
        true if all variable state is OK.