Package org.jbpm.services.task.rule.impl
Class RuleContextProviderImpl
- java.lang.Object
-
- org.jbpm.services.task.rule.impl.RuleContextProviderImpl
-
- All Implemented Interfaces:
RuleContextProvider
public class RuleContextProviderImpl extends Object implements RuleContextProvider
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addGlobals(String scope, Map<String,Object> global)
void
addKieBase(String scope, org.kie.api.KieBase kbase)
static RuleContextProviderImpl
get()
Map<String,Object>
getGlobals(String scope)
org.kie.api.KieBase
getKieBase(String scope)
void
initialize()
-
-
-
Method Detail
-
get
public static RuleContextProviderImpl get()
-
initialize
public void initialize()
-
getKieBase
public org.kie.api.KieBase getKieBase(String scope)
- Specified by:
getKieBase
in interfaceRuleContextProvider
-
getGlobals
public Map<String,Object> getGlobals(String scope)
- Specified by:
getGlobals
in interfaceRuleContextProvider
-
addGlobals
public void addGlobals(String scope, Map<String,Object> global)
- Specified by:
addGlobals
in interfaceRuleContextProvider
-
addKieBase
public void addKieBase(String scope, org.kie.api.KieBase kbase)
- Specified by:
addKieBase
in interfaceRuleContextProvider
-
-