| |
|
| java.lang.Object org.drools.jsr94.rules.admin.LocalRuleExecutionSetProviderImpl
LocalRuleExecutionSetProviderImpl | public class LocalRuleExecutionSetProviderImpl implements LocalRuleExecutionSetProvider(Code) | | The Drools implementation of the LocalRuleExecutionSetProvider
interface which defines RuleExecutionSet creation methods for
defining RuleExecutionSet s from local (non-serializable)
resources.
See Also: LocalRuleExecutionSetProvider author: N. Alex Rupp (n_alex codehaus.org) author: thomas diesler author: michael frandsen |
Method Summary | |
public RuleExecutionSet | createRuleExecutionSet(InputStream ruleExecutionSetStream, Map properties) Creates a RuleExecutionSet implementation using a supplied
input stream and additional Drools-specific properties. | public RuleExecutionSet | createRuleExecutionSet(Reader ruleExecutionSetReader, Map properties) Creates a RuleExecutionSet implementation using a supplied
character stream Reader and additional Drools-specific properties. | public RuleExecutionSet | createRuleExecutionSet(Object ruleExecutionSetAst, Map properties) Creates a RuleExecutionSet implementation from a
Drools-specific AST representation and Drools-specific properties.
Parameters: ruleExecutionSetAst - the vendor representation of a rule execution set Parameters: properties - additional properties used to create theRuleExecutionSet implementation. |
LocalRuleExecutionSetProviderImpl | public LocalRuleExecutionSetProviderImpl()(Code) | | Default constructor.
|
createRuleExecutionSet | public RuleExecutionSet createRuleExecutionSet(InputStream ruleExecutionSetStream, Map properties) throws RuleExecutionSetCreateException(Code) | | Creates a RuleExecutionSet implementation using a supplied
input stream and additional Drools-specific properties. A Drools-specific
rule execution set is read from the supplied InputStream. The method
createRuleExecutionSet taking a Reader instance should be
used if the source is a character stream and encoding conversion should
be performed.
Parameters: ruleExecutionSetStream - an input stream used to read the rule execution set. Parameters: properties - additional properties used to create theRuleExecutionSet implementation. May benull . throws: RuleExecutionSetCreateException - on rule execution set creation error. The created RuleExecutionSet . |
createRuleExecutionSet | public RuleExecutionSet createRuleExecutionSet(Reader ruleExecutionSetReader, Map properties) throws RuleExecutionSetCreateException(Code) | | Creates a RuleExecutionSet implementation using a supplied
character stream Reader and additional Drools-specific properties. A
Drools-specific rule execution set is read from the supplied Reader.
Parameters: ruleExecutionSetReader - a Reader used to read the rule execution set. Parameters: properties - additional properties used to create theRuleExecutionSet implementation. May benull . throws: RuleExecutionSetCreateException - on rule execution set creation error. The created RuleExecutionSet . |
createRuleExecutionSet | public RuleExecutionSet createRuleExecutionSet(Object ruleExecutionSetAst, Map properties) throws RuleExecutionSetCreateException(Code) | | Creates a RuleExecutionSet implementation from a
Drools-specific AST representation and Drools-specific properties.
Parameters: ruleExecutionSetAst - the vendor representation of a rule execution set Parameters: properties - additional properties used to create theRuleExecutionSet implementation. May benull . throws: RuleExecutionSetCreateException - on rule execution set creation error. The created RuleExecutionSet . |
|
|
|