Package oracle.rules.sdk2.decisionpoint
Class DecisionPoint
java.lang.Object
oracle.rules.sdk2.decisionpoint.DecisionPoint
DecisionPoint is a helper class which manages the server-side portions of
implementing Decision Points (calling OBR Decision Functions) from
developers' Java code.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
NamedValue is a helper class that conveys named values to and from Decision Points. -
Method Summary
Modifier and TypeMethodDescriptionReturn the current date used by this decision pointReturn the effective date used by this decision pointRetrieve a DecisionPointInstance with this DecisionPoint as the template.Return all properties accessible by the DecisionPointInstancegetProperty
(String name) Return a single property valuevoid
Deprecated.void
release()
Release this decision point indicating that it will not be used any further and any retained resources can be released.setCurrentDate
(Calendar currentDate) Set the current date to be used by this decision pointsetEffectiveDate
(Calendar effectiveDate) Set the effective date to be used by this decision pointsetProperty
(String name, Object value) Set a single property value.
-
Method Details
-
getInstance
Retrieve a DecisionPointInstance with this DecisionPoint as the template.- Returns:
- a new DecisionPointInstance
-
markForReload
Deprecated.Mark that the dictionary has changed and needs to be reloaded. This is only used by ChangeListeners. -
setCurrentDate
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
Return the current date used by this decision point- Returns:
- the calendar representing the current date
-
setEffectiveDate
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
Return the effective date used by this decision point- Returns:
- the calendar representing the effective date
-
getProperties
Return all properties accessible by the DecisionPointInstance- Returns:
- a map of all properties
-
getProperty
Return a single property value- Parameters:
name
- name of the property value to retrieve- Returns:
- the value of the property name
-
setProperty
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 setvalue
- 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.
-