Class RLLocalRuleExecutionSetProvider

java.lang.Object
oracle.rules.jsr94.admin.RLLocalRuleExecutionSetProvider
All Implemented Interfaces:
Serializable, javax.rules.admin.LocalRuleExecutionSetProvider

public class RLLocalRuleExecutionSetProvider extends Object implements javax.rules.admin.LocalRuleExecutionSetProvider, Serializable
The Oracle Business Rules implementation of the LocalRuleExecutionSetProvider interface.
See Also:
  • Constructor Details

    • RLLocalRuleExecutionSetProvider

      public RLLocalRuleExecutionSetProvider()
  • Method Details

    • createRuleExecutionSet

      public javax.rules.admin.RuleExecutionSet createRuleExecutionSet(InputStream is, Map properties) throws javax.rules.admin.RuleExecutionSetCreateException, IOException
      Create a RuleExecutionSet implementation from the specified input stream. The input stream is used to read the XML document that describes the desired RuleExecutionSet.
      Specified by:
      createRuleExecutionSet in interface javax.rules.admin.LocalRuleExecutionSetProvider
      Parameters:
      is - the InputStream
      properties - optional properties.
      Returns:
      the RuleExecutionSet
      Throws:
      IOException - on an input stream I/O error.
      javax.rules.admin.RuleExecutionSetCreateException - if an error is encountered creating the RuleExecutionSet.
    • createRuleExecutionSet

      public javax.rules.admin.RuleExecutionSet createRuleExecutionSet(Object ast, Map properties) throws javax.rules.admin.RuleExecutionSetCreateException
      Create a RuleExecutionSet implementation from an abstract syntax tree. This method is not supported and invoking it will throw a RuleExecutionSetCreateException.
      Specified by:
      createRuleExecutionSet in interface javax.rules.admin.LocalRuleExecutionSetProvider
      Parameters:
      ast - the abstract syntax tree
      properties - optional properties.
      Returns:
      the RuleExecutionSet
      Throws:
      javax.rules.admin.RuleExecutionSetCreateException - always.
    • createRuleExecutionSet

      public javax.rules.admin.RuleExecutionSet createRuleExecutionSet(Reader reader, Map properties) throws javax.rules.admin.RuleExecutionSetCreateException, IOException
      Create a RuleExecutionSet implementation from the specified Reader. The Reader is used to read the XML document that describes the desired RuleExecutionSet.
      Specified by:
      createRuleExecutionSet in interface javax.rules.admin.LocalRuleExecutionSetProvider
      Parameters:
      reader - the Reader
      properties - optional properties.
      Returns:
      the RuleExecutionSet
      Throws:
      IOException - on an I/O error reading the document.
      javax.rules.admin.RuleExecutionSetCreateException - if an error is encountered creating the RuleExecutionSet.
    • createRuleExecutionSet

      public javax.rules.admin.RuleExecutionSet createRuleExecutionSet(String name, String description, RuleSource[] sources, String[] rulesetStack, Map properties) throws javax.rules.admin.RuleExecutionSetCreateException
      Create a RuleExecutionSet implementation from the specified parameters.
      Parameters:
      name - the name of the RuleExecutionSet.
      description - a description of the RuleExecutionSet.
      sources - an array of RuleSource instances that describe where the rules for this RuleExecutionSet can be accessed.
      rulesetStack - an array of ruleset names which represent the desired content of the rulesetStack prior to executing the rules.
      properties - optional properties.
      Returns:
      the RuleExecutionSet
      Throws:
      javax.rules.admin.RuleExecutionSetCreateException - if an error is encountered creating the RuleExecutionSet.