org.drools.impl.KnowledgeBaseFactoryServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of knowledge-api Show documentation
Show all versions of knowledge-api Show documentation
The Drools and jBPM public API which is backwards compatible between releases.
package org.drools.impl;
import java.util.Properties;
import org.drools.KnowledgeBase;
import org.drools.KnowledgeBaseConfiguration;
import org.drools.KnowledgeBaseFactoryService;
import org.drools.base.DefaultConsequenceExceptionHandler;
import org.drools.conf.ConsequenceExceptionHandlerOption;
import org.drools.impl.adapters.EnvironmentAdapter;
import org.drools.impl.adapters.KnowledgeBaseAdapter;
import org.drools.impl.adapters.KnowledgeBaseConfigurationAdapter;
import org.drools.impl.adapters.KnowledgeSessionConfigurationAdapter;
import org.drools.runtime.Environment;
import org.drools.runtime.KnowledgeSessionConfiguration;
import org.kie.api.KieBaseConfiguration;
import org.kie.internal.builder.conf.RuleEngineOption;
public class KnowledgeBaseFactoryServiceImpl implements KnowledgeBaseFactoryService {
private final org.drools.core.impl.KnowledgeBaseFactoryServiceImpl delegate = new org.drools.core.impl.KnowledgeBaseFactoryServiceImpl();
public KnowledgeBaseConfiguration newKnowledgeBaseConfiguration() {
return new KnowledgeBaseConfigurationAdapter(newConfiguration());
}
private KieBaseConfiguration newConfiguration() {
KieBaseConfiguration conf = delegate.newKnowledgeBaseConfiguration();
conf.setProperty(ConsequenceExceptionHandlerOption.PROPERTY_NAME, DefaultConsequenceExceptionHandler.class.getCanonicalName());
return conf;
}
public KnowledgeBaseConfiguration newKnowledgeBaseConfiguration(Properties properties, ClassLoader... classLoader) {
return new KnowledgeBaseConfigurationAdapter(newConfiguration(properties, classLoader));
}
private KieBaseConfiguration newConfiguration(Properties properties, ClassLoader... classLoader) {
KieBaseConfiguration conf = delegate.newKnowledgeBaseConfiguration(properties, classLoader);
conf.setProperty(ConsequenceExceptionHandlerOption.PROPERTY_NAME, DefaultConsequenceExceptionHandler.class.getCanonicalName());
return conf;
}
public KnowledgeSessionConfiguration newKnowledgeSessionConfiguration() {
return new KnowledgeSessionConfigurationAdapter(delegate.newKnowledgeSessionConfiguration());
}
public KnowledgeSessionConfiguration newKnowledgeSessionConfiguration(Properties properties) {
return new KnowledgeSessionConfigurationAdapter(delegate.newKnowledgeSessionConfiguration(properties));
}
public KnowledgeBase newKnowledgeBase() {
return newKnowledgeBase(newKnowledgeBaseConfiguration());
}
public KnowledgeBase newKnowledgeBase(String kbaseId) {
return newKnowledgeBase(kbaseId, newKnowledgeBaseConfiguration());
}
public KnowledgeBase newKnowledgeBase(KnowledgeBaseConfiguration conf) {
KieBaseConfiguration kieBaseConf = ((KnowledgeBaseConfigurationAdapter) conf).getDelegate();
kieBaseConf.setOption(RuleEngineOption.RETEOO);
kieBaseConf.setProperty(ConsequenceExceptionHandlerOption.PROPERTY_NAME, DefaultConsequenceExceptionHandler.class.getCanonicalName());
return new KnowledgeBaseAdapter(delegate.newKnowledgeBase(kieBaseConf));
}
public KnowledgeBase newKnowledgeBase(String kbaseId, KnowledgeBaseConfiguration conf) {
KieBaseConfiguration kieBaseConf = ((KnowledgeBaseConfigurationAdapter) conf).getDelegate();
kieBaseConf.setOption(RuleEngineOption.RETEOO);
kieBaseConf.setProperty(ConsequenceExceptionHandlerOption.PROPERTY_NAME, DefaultConsequenceExceptionHandler.class.getCanonicalName());
return new KnowledgeBaseAdapter(delegate.newKnowledgeBase(kbaseId, kieBaseConf));
}
public Environment newEnvironment() {
return new EnvironmentAdapter(delegate.newEnvironment());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy