Class DecisionPoint

java.lang.Object
oracle.rules.sdk2.decisionpoint.DecisionPoint

public class DecisionPoint extends Object
DecisionPoint is a helper class which manages the server-side portions of implementing Decision Points (calling OBR Decision Functions) from developers' Java code.
  • Method Details

    • getInstance

      public DecisionPointInstance getInstance()
      Retrieve a DecisionPointInstance with this DecisionPoint as the template.
      Returns:
      a new DecisionPointInstance
    • markForReload

      @Deprecated public void markForReload(RepositoryChange rc)
      Deprecated.
      Mark that the dictionary has changed and needs to be reloaded. This is only used by ChangeListeners.
    • setCurrentDate

      public DecisionPoint setCurrentDate(Calendar currentDate)
      Set the current date to be used by this decision point
      Parameters:
      currentDate - set the current date of RuleSessions used by this decision point
      Returns:
      self
    • getCurrentDate

      public Calendar getCurrentDate()
      Return the current date used by this decision point
      Returns:
      the calendar representing the current date
    • setEffectiveDate

      public DecisionPoint setEffectiveDate(Calendar effectiveDate)
      Set the effective date to be used by this decision point
      Parameters:
      effectiveDate - set the effective date of RuleSessions used by this decision point
      Returns:
      self
    • getEffectiveDate

      public Calendar getEffectiveDate()
      Return the effective date used by this decision point
      Returns:
      the calendar representing the effective date
    • getProperties

      public Map<String,Object> getProperties()
      Return all properties accessible by the DecisionPointInstance
      Returns:
      a map of all properties
    • getProperty

      public Object getProperty(String name)
      Return a single property value
      Parameters:
      name - name of the property value to retrieve
      Returns:
      the value of the property name
    • setProperty

      public DecisionPoint setProperty(String name, Object value)
      Set a single property value. These properties are local to the decision point and do not affect the JVM system properties.
      Parameters:
      name - the name of the property to set
      value - the value of the property
      Returns:
      self
    • release

      public void release()
      Release this decision point indicating that it will not be used any further and any retained resources can be released.