Class DTActionNode

All Implemented Interfaces:
Serializable, Cloneable, Map<String,Object>, UnnamedComponent, ExpressionContext, VariableScope

public class DTActionNode extends UnnamedRuleComponent<DTActionNode> implements ExpressionContext
A DTActionNode tells each DTRule how to interpret its DTAction. A DTActionNode contains a boolean "selected" property that indicates if the corresponding DTRule should execute this action. If the DTAction is parameterized, then each DTActionNode contains a dynamic copy of the DTAction Action's ExpressionTable (parameter table). The copy is dynamic because only Expressions marked with the DTActionParameter property may be modified.
See Also:
  • Method Details

    • getDTAction

      public DTAction getDTAction()
      Get DTAction containing this DTActionNode
      Returns:
      DTAction
    • getDTAction

      public DTAction getDTAction(boolean diff)
      Get DTAction containing this DTActionNode
      Parameters:
      diff - whether this node is in the diff value
      Returns:
      DTAction
    • parentAction

      public Action parentAction()
      Overrides:
      parentAction in class RuleComponent<DTActionNode>
    • getActionSelectedProperty

      public SettableProperty<Boolean> getActionSelectedProperty()
      Get ActionSelected Property.
      Returns:
      Boolean SettableProperty
    • isActionSelected

      public boolean isActionSelected()
      Is Action Selected flag
      Returns:
      flag indicating whether the Action is selected for the Rule referencing this action node
    • setActionSelected

      public void setActionSelected(boolean selected)
      Set Action Selected flag
      Parameters:
      selected - whether the Action is selected for the Rule referencing this action node
    • getExpressionTableProperty

      public TableProperty<Expression> getExpressionTableProperty()
      get ExpressionTable Property.
      Returns:
      Expression TableProperty
    • getExpressionTable

      public ExpressionTable getExpressionTable()
      Get Expression Table. The expressions are the DTAction parameters, and should be retrieved using getExpressionByDTActionParameterName(java.lang.String) Any changes to the DTAction should be followed by RuleDictionary.update(java.util.List<oracle.rules.sdk2.exception.SDKWarning>) before calling this method.
      Returns:
      ExpressionTable with parameters of the DTAction
    • getPropertyNames

      public String[] getPropertyNames()
      Specified by:
      getPropertyNames in interface UnnamedComponent
      Overrides:
      getPropertyNames in class UnnamedRuleComponent<DTActionNode>
      Returns:
      Array of property names available.
    • getStoredPropertyNames

      public String[] getStoredPropertyNames()
      Overrides:
      getStoredPropertyNames in class UnnamedRuleComponent<DTActionNode>
      Returns:
      Array of property names which are persisted in the order in which they appear in the schema.
    • getChildActionNode

      public DTActionNode getChildActionNode()
      Get child action node -- node of next action in rule containing this node
      Returns:
      child DTActionNode
    • getParentActionNode

      public DTActionNode getParentActionNode()
      Get parent action node -- node of previous action in rule containing this node
      Returns:
      child DTActionNode
    • validate

      public void validate(List<SDKException> errors, List<SDKWarning> warnings)
      Validate expression table: Adjusts DTAction parameters to be consistent with DTAction. Expressions should have "DTActionParameterName" non-empty. Duplicate names indicate a merge collision. Parameters are copied from the DTAction's ExpressionTable. They can be modified per rule.
      Overrides:
      validate in class DictionaryComponent<DTActionNode>
      Parameters:
      errors -
      warnings -
      See Also:
    • getExpressionByDTActionParameterName

      public Expression getExpressionByDTActionParameterName(String parameterName)
      Get Expression from this DTAction's expression table by DT action parameter name. Any changes to the DTAction should be followed by RuleDictionary.update(java.util.List<oracle.rules.sdk2.exception.SDKWarning>) before calling this method.
      Parameters:
      parameterName - name of DT action parameter
      Returns:
      Expression corresponding to value of named parameter, or null if no such parameter.
    • get

      public Object get(Object key)
      override get for isActionSelected
      Specified by:
      get in interface Map<String,Object>
      Overrides:
      get in class UnnamedRuleComponent<DTActionNode>
      Parameters:
      key -
      Returns:
      value of key
    • getMatchOp

      public String getMatchOp(Expression e)
      find the match op in DTAction
      Specified by:
      getMatchOp in interface ExpressionContext
    • getMatchTypeIDs

      public DOID[] getMatchTypeIDs(Expression e)
      find the match type in DTAction
      Specified by:
      getMatchTypeIDs in interface ExpressionContext
    • isValueRequired

      public boolean isValueRequired(Expression e)
      DT action param value always required
      Specified by:
      isValueRequired in interface ExpressionContext
    • put

      public Object put(String key, Object value)
      Description copied from class: DictionaryComponent
      Generic property setter. Throws runtime exceptions for incorrect arguments. Please see the specific bean class for a list of properties, their types, and permissible values.

      A put() with either null key or null value throws a NullPointerException.

      A put() with a key that is not a String throws a ClassCastException

      A put() of a value that is not of the correct type for the key throws a ClassCastException.

      Bean properties which have no set() method are read only, and cannot be modified using the put(). Attempting to do so throws a runtime IllegalArgumentException. PROP_ID, and PROP_*_SELECTED are always read only.

      Specified by:
      put in interface Map<String,Object>
      Overrides:
      put in class UnnamedRuleComponent<DTActionNode>
      Parameters:
      key - the key of the property to set
      value - the value of the named property to set
      Returns:
      the previous value of the property
    • inScopeVariables

      public List<ScopedVariable> inScopeVariables(boolean includeAggregates, VariableScope.ExprLocation loc)
      Description copied from class: RuleComponent
      By default, pass the request to the container
      Specified by:
      inScopeVariables in interface VariableScope
      Overrides:
      inScopeVariables in class RuleComponent<DTActionNode>