Class DTAction

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

public class DTAction extends Action
A DTAction is an action that may be selected by any rule in the decision table, optionally with different parameters per rule. A Decision Table Action extends Action and contains
  • a DTActionNodeTable that contains a DTActionNode for every rule on the sheet
  • a boolean "parameterized" property that indicates whether the Action and the DTActionNode must be combined to form the rule action.
  • a boolean "alwaysSelected" property that indicates the "actionSelected" property of each DTActionNode is true and cannot be de-selected.
Any Action FORM may be used and any Expression it contains (even nested ones) can be parameterized. Parameterization uses DTActionParameterName (PROP_DT_ACTION_PARAMETER_NAME) property on the Expressions contained in the action.

An ASSIGN_NEW action must be alwaysSelected.

When the UI supplies action parameters, it should name those parameters that are to be supplied by the DTActionNodes by setting its DTActionParameterName property. Any expression value supplied becomes the default value if one is not supplied for the node.

See Also:
  • Method Details

    • setParameterized

      @Deprecated public void setParameterized(boolean parameterized)
      Deprecated.
      no longer needed
      set parameterized flag
      Parameters:
      parameterized - boolean flag
    • getAlwaysSelectedProperty

      public SettableProperty<Boolean> getAlwaysSelectedProperty()
      Get AlwaysSelected Property.
      Returns:
      Boolean SettableProperty
    • isAlwaysSelected

      public boolean isAlwaysSelected()
      is this action always selected in the child DTActionNodes?
      Returns:
      boolean flag
    • setAlwaysSelected

      public void setAlwaysSelected(boolean selected)
      set alwaysSelected flag
      Parameters:
      selected - boolean flag
    • getDTActionNodeTableProperty

      @Deprecated public TableProperty<DTActionNode> getDTActionNodeTableProperty()
      Get DTActionNodeTable Property.
      Returns:
      DTAction TableProperty
    • getDTActionNodeTable

      public DTActionNodeTable getDTActionNodeTable()
      Get DTActionNodeTable. Each node corresponds positionally to its DTRule. See also DTRule.getDTActionNodeTable()
      Returns:
      DTActionNodeTable of this DTAction
    • getPropertyNames

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

      public String[] getStoredPropertyNames()
      Overrides:
      getStoredPropertyNames in class Action
      Returns:
      Array of property names which are persisted in the order in which they appear in the schema.
    • validate

      public void validate(List<SDKException> errors, List<SDKWarning> warnings)
      Validate decision table action. Validate the action and the action node table. Validate that all action parameters have distinct names and that if parameterized, at least one parameter is defined ASSIGN_NEW action valid only if always selected
      Overrides:
      validate in class Action
      Parameters:
      errors -
      warnings -
      See Also:
    • put

      public Object put(String key, Object value)
      override to set nodes' actionSelected property true if this alwaysSelected set to true
      Specified by:
      put in interface Map<String,Object>
      Overrides:
      put in class Action
      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
    • getContainedExpressions

      public List<Expression> getContainedExpressions()
      Get all expressions immediately contained in this action Note: in 11g this returned nested expressions as well, but this was never used.
      Returns:
      List of Expressions
    • getExpressionByDTActionParameterName

      public Expression getExpressionByDTActionParameterName(String parameterName)
      Get Expression from this DTAction's contained expressions by DT action parameter name.
      Parameters:
      parameterName - name of DT action parameter
      Returns:
      Expression corresponding to value of named parameter, or null if no such parameter.
    • inScopeVariables

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

      public Object get(Object key)
      Description copied from class: Action
      Generic property getter (override).

      get TARGET must convert from persistent to user format

      Specified by:
      get in interface Map<String,Object>
      Overrides:
      get in class Action
      Parameters:
      key - a String containing the property name to be fetched.
      Returns:
      the value corresponding to the key: a String, String[], RuleComponent, or RuleComponentTable