Class RLStatefulRuleSession

java.lang.Object
oracle.rules.jsr94.RLStatefulRuleSession
All Implemented Interfaces:
Serializable, javax.rules.RuleSession, javax.rules.StatefulRuleSession

public class RLStatefulRuleSession extends Object implements javax.rules.StatefulRuleSession, Serializable
The Oracle Business Rules implementation of a JSR-94 Stateful rule session.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    javax.rules.Handle
    addObject(Object object)
    Adds an Object to the rule session state of this rule session.
    addObjects(List objects)
    Adds the List of objects to the rule session state of this rule session.
    Execute the RL function with no arguments, returning result.
    Execute the RL function with one argument, returning result.
    Execute the RL function with given array arguments, returning result.
    Execute the RL function with given list of arguments, returning result.
    boolean
    containsObject(javax.rules.Handle h)
    Returns true if the Object associated with the specified Handle is in the rule session state of this rule session.
    void
    Executes the rules in the rule execution set bound to this rule session.
    Returns a List of Handles, one for each Object in the rule session state for this rule session.
    getObject(javax.rules.Handle h)
    Returns the Object associated with the specified Handle.
    Returns a List of all objects in the rule session state of this rule session.
    getObjects(javax.rules.ObjectFilter filter)
    Returns a List of all objects in the rule session state of this rule session.
    javax.rules.RuleExecutionSetMetadata
     
    int
     
    void
     
    void
    removeObject(javax.rules.Handle h)
    Removes the Object associated with the specified Handle from the rule session state of this rule session.
    void
    Resets this rule session.
    void
    updateObject(javax.rules.Handle h, Object newObj)
    Updates the rule session state to reflect that the specified object should be now associated with the specified handle.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface javax.rules.RuleSession

    getRuleExecutionSetMetadata, getType, release
  • Method Details

    • addObject

      public javax.rules.Handle addObject(Object object) throws javax.rules.InvalidRuleSessionException, RemoteException
      Adds an Object to the rule session state of this rule session.
      Specified by:
      addObject in interface javax.rules.StatefulRuleSession
      Parameters:
      object - the Object to add
      Returns:
      the Handle for the newly added object
      Throws:
      javax.rules.InvalidRuleSessionException - if an error is encountered adding the object
      RemoteException
    • addObjects

      public List addObjects(List objects) throws javax.rules.InvalidRuleSessionException, RemoteException
      Adds the List of objects to the rule session state of this rule session.
      Specified by:
      addObjects in interface javax.rules.StatefulRuleSession
      Parameters:
      objects - the object to add
      Returns:
      a List of Handles for the newly added objects
      Throws:
      javax.rules.InvalidRuleSessionException - if an error is encountered adding the objects
      RemoteException
    • containsObject

      public boolean containsObject(javax.rules.Handle h) throws javax.rules.InvalidRuleSessionException, javax.rules.InvalidHandleException, RemoteException
      Returns true if the Object associated with the specified Handle is in the rule session state of this rule session.
      Specified by:
      containsObject in interface javax.rules.StatefulRuleSession
      Parameters:
      h - the Handle for the object of interest
      Returns:
      true if the Object associated with the specified Handle is in the rule session state of this rule session.
      Throws:
      javax.rules.InvalidHandleException - if the Handle is no longer valid
      javax.rules.InvalidRuleSessionException - if an error is encountered
      RemoteException
    • updateObject

      public void updateObject(javax.rules.Handle h, Object newObj) throws javax.rules.InvalidRuleSessionException, javax.rules.InvalidHandleException, RemoteException
      Updates the rule session state to reflect that the specified object should be now associated with the specified handle. This may be the original object reference with modified content or a new object reference.
      Specified by:
      updateObject in interface javax.rules.StatefulRuleSession
      Parameters:
      h - the Handle for the object of interest
      newObj - the modified object
      Throws:
      javax.rules.InvalidHandleException - if the Handle is no longer valid
      javax.rules.InvalidRuleSessionException - if an error is encountered updating the object.
      RemoteException
    • removeObject

      public void removeObject(javax.rules.Handle h) throws javax.rules.InvalidRuleSessionException, javax.rules.InvalidHandleException, RemoteException
      Removes the Object associated with the specified Handle from the rule session state of this rule session.
      Specified by:
      removeObject in interface javax.rules.StatefulRuleSession
      Parameters:
      h - the Handle for the object of interest
      Throws:
      javax.rules.InvalidHandleException - if the Handle is no longer valid
      javax.rules.InvalidRuleSessionException - if an error is encountered
      RemoteException
    • getObject

      public Object getObject(javax.rules.Handle h) throws javax.rules.InvalidRuleSessionException, javax.rules.InvalidHandleException, RemoteException
      Returns the Object associated with the specified Handle.
      Specified by:
      getObject in interface javax.rules.StatefulRuleSession
      Parameters:
      h - the Handle for the object of interest
      Returns:
      the Object associated with the specified Handle.
      Throws:
      javax.rules.InvalidHandleException - if the Handle is no longer valid
      javax.rules.InvalidRuleSessionException - if an error is encountered
      RemoteException
    • getHandles

      public List getHandles() throws javax.rules.InvalidRuleSessionException, RemoteException
      Returns a List of Handles, one for each Object in the rule session state for this rule session.
      Specified by:
      getHandles in interface javax.rules.StatefulRuleSession
      Returns:
      a List of Handles, one for each Object in the rule session state for this rule session.
      Throws:
      javax.rules.InvalidRuleSessionException - if an error is encountered
      RemoteException
    • getObjects

      public List getObjects() throws javax.rules.InvalidRuleSessionException, RemoteException
      Returns a List of all objects in the rule session state of this rule session. The objects are filtered by the default RuleExecutionSet filter (if present).
      Specified by:
      getObjects in interface javax.rules.StatefulRuleSession
      Returns:
      a List of Objects.
      Throws:
      javax.rules.InvalidRuleSessionException - if an error is encountered
      RemoteException
    • getObjects

      public List getObjects(javax.rules.ObjectFilter filter) throws javax.rules.InvalidRuleSessionException, RemoteException
      Returns a List of all objects in the rule session state of this rule session. The objects are filtered by the specified filter.
      Specified by:
      getObjects in interface javax.rules.StatefulRuleSession
      Returns:
      a List of Objects.
      Throws:
      javax.rules.InvalidRuleSessionException - if an error is encountered
      RemoteException
    • executeRules

      public void executeRules() throws javax.rules.InvalidRuleSessionException, RemoteException
      Executes the rules in the rule execution set bound to this rule session.
      Specified by:
      executeRules in interface javax.rules.StatefulRuleSession
      Throws:
      javax.rules.InvalidRuleSessionException - if an error is encountered
      RemoteException
    • reset

      public void reset() throws javax.rules.InvalidRuleSessionException, RemoteException
      Resets this rule session.
      Specified by:
      reset in interface javax.rules.StatefulRuleSession
      Throws:
      javax.rules.InvalidRuleSessionException - if an error is encountered
      RemoteException
    • callFunction

      public Object callFunction(String name) throws javax.rules.InvalidRuleSessionException, RemoteException
      Execute the RL function with no arguments, returning result.
      Parameters:
      name - name of RL function, optionally ruleset-qualified
      Returns:
      Object result of RL function
      Throws:
      javax.rules.InvalidRuleSessionException - if an error is encountered executing the function
      RemoteException
    • callFunctionWithArgument

      public Object callFunctionWithArgument(String name, Object arg) throws javax.rules.InvalidRuleSessionException, RemoteException
      Execute the RL function with one argument, returning result.
      Parameters:
      name - name of RL function, optionally ruleset-qualified
      arg - Object to pass to function
      Returns:
      Object result of RL function
      Throws:
      javax.rules.InvalidRuleSessionException - if an error is encountered executing the function
      RemoteException
    • callFunctionWithArgumentArray

      public Object callFunctionWithArgumentArray(String name, Object[] args) throws javax.rules.InvalidRuleSessionException, RemoteException
      Execute the RL function with given array arguments, returning result.
      Parameters:
      name - name of RL function, optionally ruleset-qualified
      args - array of arguments to pass to function
      Returns:
      Object result of RL function
      Throws:
      javax.rules.InvalidRuleSessionException - if an error is encountered executing the function
      RemoteException
    • callFunctionWithArgumentList

      public Object callFunctionWithArgumentList(String name, List args) throws javax.rules.InvalidRuleSessionException, RemoteException
      Execute the RL function with given list of arguments, returning result.
      Parameters:
      name - name of RL function, optionally ruleset-qualified
      args - list to pass to function
      Returns:
      Object result of RL function
      Throws:
      javax.rules.InvalidRuleSessionException - if an error is encountered executing the function
      RemoteException
    • getRuleExecutionSetMetadata

      public javax.rules.RuleExecutionSetMetadata getRuleExecutionSetMetadata() throws javax.rules.InvalidRuleSessionException, RemoteException
      Specified by:
      getRuleExecutionSetMetadata in interface javax.rules.RuleSession
      Throws:
      javax.rules.InvalidRuleSessionException
      RemoteException
    • getType

      public int getType() throws javax.rules.InvalidRuleSessionException, RemoteException
      Specified by:
      getType in interface javax.rules.RuleSession
      Throws:
      javax.rules.InvalidRuleSessionException
      RemoteException
    • release

      public void release() throws javax.rules.InvalidRuleSessionException, RemoteException
      Specified by:
      release in interface javax.rules.RuleSession
      Throws:
      javax.rules.InvalidRuleSessionException
      RemoteException