Package oracle.rules.sdk2.decisionpoint
Class DecisionPointBuilder
java.lang.Object
oracle.rules.sdk2.decisionpoint.DecisionPointBuilder
Builder for creating a decision point.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
static final int
static final int
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic void
addDataSource
(String datasrc, String url, String user, String pw) setup a jndi data source for unit testbuild()
Constructs and returns a DecisionPoint instance from the values specified in this builder.static void
createDecisionPointMetadata
(String fileName, String decisionPointName, String topViewDefName, List<String> javaClassNames, boolean forWebService, oracle.jbo.server.DBTransactionImpl2 txn) Deprecated.The classloader to be used by this decision point.Retrieve the config map to be used for the RuleSession.Return the current date used by this decision pointReturn the name of the decision function to be executed in this decision point.int
Retrieve the decision trace level.int
Retrieve the decision trace limit.The rule dictionary instance, when loaded by client code instead of through MDS.Return the fully-qualified name of the dictionary that this decision point is using.Return the effective date used by this decision pointReturn all properties accessible by the DecisionPointInstancegetProperty
(String name) Return a single property valueboolean
isDebug()
Deprecated.static DecisionPointInstance
processWebInputs
(RuleSession rs, DecisionPointInputs dpinputs) Create a new DecisionPointInstance using the RuleSession and DecisionPointInputs instances passed as parameters.static DecisionPointInstance
processWebInputs
(RuleSession rs, SimpleDecisionPointInput dpinput) Create a new DecisionPointInstance using the RuleSession and SimpleDecisionPointInput instances passed as parameters.setClassLoader
(ClassLoader loader) Set the classloader to be used by this decision point.setCurrentDate
(Calendar currentDate) Set the current date to be used by this decision pointsetDebug
(boolean debug) Deprecated.setDecisionFunction
(String decisionFunction) Set the unqualified name of the decision function to call as part of this decision point.setDecisionTraceLevel
(int level) Set the decision trace level.setDecisionTraceLimit
(int limit) Set the decision trace limit.setDictionary
(RuleDictionary dict) Sets the rule dictionary instance, when loaded by developer code instead of through MDS.This will cause the decision point to retrieve the dictionary with the indicated name from the MDS repository.setEffectiveDate
(Calendar effectiveDate) Set the effective date to be used by this decision pointsetInitialSize
(int size) Set the initial size of the rule session pool managed by the decision point.setProperty
(String name, Object value) Set a single property value.setShouldPool
(boolean shouldPool) Set the value of the pooling attribute.setShouldRefresh
(boolean shouldRefresh) Set the value of the dictionary refresh attribute.setSoftMaxSize
(int size) Set the soft maximum size of the rule session pool managed by the decision point.boolean
By default, the decision point will manage a pool of RuleSession instances.boolean
By default, the decision point will detect changes to the rule dictionary identified by the DictionaryFQN.static DictionaryFQN
stringToFqn
(String fqn) Fluent interface method which aliases thesetDecisionFunction(java.lang.String)
method.with
(RuleDictionary dict) Fluent interface method which aliases thesetDictionary(oracle.rules.sdk2.dictionary.RuleDictionary)
method.with
(DictionaryFQN fqn) Fluent interface method which aliases thesetDictionaryFQN(oracle.rules.sdk2.repository.DictionaryFQN)
method.
-
Field Details
-
DECISION_TRACE_OFF
public static final int DECISION_TRACE_OFF- See Also:
-
DECISION_TRACE_PRODUCTION
public static final int DECISION_TRACE_PRODUCTION- See Also:
-
DECISION_TRACE_DEVELOPMENT
public static final int DECISION_TRACE_DEVELOPMENT- See Also:
-
-
Constructor Details
-
DecisionPointBuilder
public DecisionPointBuilder()Constructor.
-
-
Method Details
-
with
Fluent interface method which aliases thesetDictionaryFQN(oracle.rules.sdk2.repository.DictionaryFQN)
method. This will cause the decision point to retrieve the dictionary with the indicated name from the MDS repository.- Parameters:
fqn
- the name of the dictionary to be used- Returns:
- self
-
with
Fluent interface method which aliases thesetDictionary(oracle.rules.sdk2.dictionary.RuleDictionary)
method. This will cause the decision point to use the specified dictionary.- Parameters:
dict
- the caller-loaded dictionary to be used- Returns:
- self
-
with
Fluent interface method which aliases thesetDecisionFunction(java.lang.String)
method. This will cause the decision point to use the specified decision function.- Parameters:
decisionFunction
- the unqualified name of the decision function to call- Returns:
- self
-
build
Constructs and returns a DecisionPoint instance from the values specified in this builder.- Returns:
- a new DecisionPoint instance
- Throws:
SDKException
- if the builder has not been properly specified
-
setDecisionTraceLevel
Set the decision trace level. This defaults to DECISION_TRACE_OFF- Parameters:
level
- the decision trace level, as defined in RuleSession- Returns:
- this
-
getDecisionTraceLevel
public int getDecisionTraceLevel()Retrieve the decision trace level.- Returns:
- the decision trace level
-
setDecisionTraceLimit
Set the decision trace limit. This defaults to 10000.- Parameters:
limit
- the decision trace limit, as defined in RuleSession- Returns:
- this
-
getDecisionTraceLimit
public int getDecisionTraceLimit()Retrieve the decision trace limit.- Returns:
- the decision trace limit
-
setConfig
- Parameters:
config
- the Map instance to use- Returns:
- this
-
getConfig
Retrieve the config map to be used for the RuleSession.- Returns:
- the config map
-
shouldPool
public boolean shouldPool()By default, the decision point will manage a pool of RuleSession instances. This returns the value of whether or not it should do this.- Returns:
- true if the decision point will manage a pool, false otherwise
-
setShouldPool
Set the value of the pooling attribute. If set to false, the caller must supply a RuleSession instance configued with the necessary RL code to the DecisionPointInstance before calling the invoke method. Not using the pool management capabilities of decision point is considered an advanced usecase.- Returns:
- self
-
shouldRefresh
public boolean shouldRefresh()By default, the decision point will detect changes to the rule dictionary identified by the DictionaryFQN. When a change is detected, the dictionary is reloaded and the pool of RuleSession instances is refreshed if shouldPool() is true. This is only applicable if the DecisionPointBuilder has the DictionaryFQN set.- Returns:
- true if the decision point respond to dictionary changes.
-
setShouldRefresh
Set the value of the dictionary refresh attribute. If set to false, the dictionary is loaded once and not reloaded if the dictionary is modified. This is only applicable if the DecisionPointBuilder has the DictionaryFQN set.- Returns:
- self
-
setInitialSize
Set the initial size of the rule session pool managed by the decision point. This should only be changed after thorough performance analysis.- Returns:
- self
-
setSoftMaxSize
Set the soft maximum size of the rule session pool managed by the decision point. This should only be changed after thorough performance analysis.- Returns:
- self
-
setDebug
Deprecated.Previously controlled debug output. Now a noop.- Parameters:
debug
- true to turn debug output on, false to turn it off- Returns:
- self
-
isDebug
Deprecated.Previously controlled debug output. Now a noop.- Returns:
- true to turn debug output on, false to turn it off
-
getDictionaryFQN
Return the fully-qualified name of the dictionary that this decision point is using.- Returns:
- fully-qualified name of dictionary
-
setDictionaryFQN
This will cause the decision point to retrieve the dictionary with the indicated name from the MDS repository.- Parameters:
fqn
- the name of the dictionary to be used.- Returns:
- self
-
setDictionary
Sets the rule dictionary instance, when loaded by developer code instead of through MDS. The preferred way of loading the rule dictionary is to configure MDS and then set only the name of the dictionary which this decision point should use. Do not call setDictionaryName in this case.- Parameters:
dict
- a reference to a RuleDictionary to be used by this DecisionPoint- Returns:
- self
-
getDictionary
The rule dictionary instance, when loaded by client code instead of through MDS.- Returns:
- the specified dictionary
-
setDecisionFunction
Set the unqualified name of the decision function to call as part of this decision point. This is the name only, and not the fully-qualified name.- Parameters:
decisionFunction
- name of the decision function to call- Returns:
- self
-
getDecisionFunction
Return the name of the decision function to be executed in this decision point.- Returns:
- the name of the decision function
-
setClassLoader
Set the classloader to be used by this decision point. Typically, this does not need to be set explictly, as the environment will contain an appropriate classloader.- Parameters:
loader
- ClassLoader instance from which to load the built-in rules DecisionPointDictioanry- Returns:
- self
-
getClassLoader
The classloader to be used by this decision point.- Returns:
- the classloader instance to be used by this decision point, or null if the default one is to be used
-
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
-
getCurrentDate
Return the current date used by this decision point- Returns:
- the calendar representing the current date
-
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
-
getEffectiveDate
Return the effective date used by this decision point- Returns:
- the calendar representing the effective 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
-
createDecisionPointMetadata
@Deprecated public static void createDecisionPointMetadata(String fileName, String decisionPointName, String topViewDefName, List<String> javaClassNames, boolean forWebService, oracle.jbo.server.DBTransactionImpl2 txn) throws SDKException Deprecated.Creates metadata for a decision point within a given dictionary file. If the file does not exist, it will be created. This method creates two decision functions, a technical wrapper decision function called name_W, and a decision function which is configurable. NOTE: This method is not UTF-8 compliant.- Parameters:
fileName
- absolute path to filedecisionPointName
- the name of the decision point to be created, which will be the name of the decision function created as well.topViewDefName
- the root View Definition of the JBO VO-Tree upon which the Decision Point's rules will be based.javaClassNames
- Java classes, either as ancillary input facts or as ActionTypesforWebService
- if true, the Decision Point will be configured for use via Decision Services as a Decision Component. If false, the D.F. will be set up for use from Java.txn
- a Transaction object to be used to retrieve locale-specific details from the View Object hierarchy. If this value is null, then only the base VO definition in the Default Locale will be used.- Throws:
SDKException
-
processWebInputs
public static DecisionPointInstance processWebInputs(RuleSession rs, DecisionPointInputs dpinputs) throws RLException, SDKException Create a new DecisionPointInstance using the RuleSession and DecisionPointInputs instances passed as parameters.- Parameters:
dpinputs
- the inputs to the decision point- Returns:
- the DecisionPointInstance in which the execution was done
- Throws:
RLException
SDKException
-
processWebInputs
public static DecisionPointInstance processWebInputs(RuleSession rs, SimpleDecisionPointInput dpinput) throws RLException, SDKException Create a new DecisionPointInstance using the RuleSession and SimpleDecisionPointInput instances passed as parameters.- Parameters:
rs
- rule session to use with the DecisionPointInstancedpinput
- the inputs to the decision point- Returns:
- the DecisionPointInstance in which the execution was done
- Throws:
RLException
SDKException
-
stringToFqn
-
addDataSource
public static void addDataSource(String datasrc, String url, String user, String pw) throws SQLException, NamingException setup a jndi data source for unit test- Parameters:
datasrc
- - name of data source, e.g. jdbc/MyDataSourceurl
- - the "connect string" to the database, e.g. jdbc:orcl:thin:@localhost:1521:xeuser
- - DB user idpw
- - DB password- Throws:
SQLException
NamingException
-