
org.jbpm.process.ProcessBaseImpl Maven / Gradle / Ivy
/**
* Copyright 2010 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jbpm.process;
import org.drools.core.RuleBase;
import org.drools.core.SessionConfiguration;
import org.drools.core.impl.EnvironmentFactory;
import org.drools.core.impl.InternalKnowledgeBase;
import org.kie.api.definition.KiePackage;
import org.kie.internal.definition.KnowledgePackage;
import org.kie.api.definition.process.Process;
import org.kie.api.definition.rule.Query;
import org.kie.api.definition.rule.Rule;
import org.kie.api.definition.type.FactType;
import org.kie.api.event.kiebase.KieBaseEventListener;
import org.kie.internal.runtime.StatefulKnowledgeSession;
import org.kie.internal.runtime.StatelessKnowledgeSession;
import org.kie.api.runtime.Environment;
import org.kie.api.runtime.KieSession;
import org.kie.api.runtime.KieSessionConfiguration;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
public class ProcessBaseImpl implements InternalKnowledgeBase {
private Map processes = new HashMap();
private Map packages = new HashMap();
private List listeners = new ArrayList();
public void addEventListener(KieBaseEventListener listener) {
listeners.add(listener);
}
public void removeEventListener(KieBaseEventListener listener) {
listeners.remove(listener);
}
public Collection getKieBaseEventListeners() {
return listeners;
}
public void addKnowledgePackage(KnowledgePackage knowledgePackage) {
packages.put(knowledgePackage.getName(), knowledgePackage);
for (Process process: knowledgePackage.getProcesses()) {
processes.put(process.getId(), process);
}
}
public void addKnowledgePackages(Collection knowledgePackages) {
for ( KnowledgePackage knowledgePackage : knowledgePackages ) {
addKnowledgePackage(knowledgePackage);
}
}
public Collection getKnowledgePackages() {
return packages.values();
}
public StatefulKnowledgeSession newStatefulKnowledgeSession() {
return newStatefulKnowledgeSession(new SessionConfiguration(), EnvironmentFactory.newEnvironment());
}
public KieSession newKieSession() {
return newKieSession(new SessionConfiguration(), EnvironmentFactory.newEnvironment());
}
public StatefulKnowledgeSession newStatefulKnowledgeSession(KieSessionConfiguration conf, Environment environment) {
return new StatefulProcessSession(this, conf, environment);
}
public KieSession newKieSession(KieSessionConfiguration conf, Environment environment) {
return new StatefulProcessSession(this, conf, environment);
}
public Collection getStatefulKnowledgeSessions() {
throw new UnsupportedOperationException("Getting stateful sessions not supported");
}
public Collection getKieSessions() {
throw new UnsupportedOperationException("Getting stateful sessions not supported");
}
public StatelessKnowledgeSession newStatelessKnowledgeSession() {
throw new UnsupportedOperationException("Stateless sessions not supported");
}
public StatelessKnowledgeSession newStatelessKieSession() {
throw new UnsupportedOperationException("Stateless sessions not supported");
}
public StatelessKnowledgeSession newStatelessKnowledgeSession(KieSessionConfiguration conf) {
throw new UnsupportedOperationException("Stateless sessions not supported");
}
public StatelessKnowledgeSession newStatelessKieSession(KieSessionConfiguration conf) {
throw new UnsupportedOperationException("Stateless sessions not supported");
}
public void removeKnowledgePackage(String packageName) {
packages.remove(packageName);
}
public void removeRule(String packageName, String ruleName) {
throw new UnsupportedOperationException();
}
public void removeQuery(String packageName, String queryName) {
throw new UnsupportedOperationException();
}
public void removeFunction(String packageName, String ruleName) {
throw new UnsupportedOperationException();
}
public void removeProcess(String processId) {
processes.remove(processId);
}
public FactType getFactType(String packageName, String typeName) {
throw new UnsupportedOperationException();
}
public KnowledgePackage getKnowledgePackage(String packageName) {
return packages.get(packageName);
}
public Process getProcess(String processId) {
return processes.get(processId);
}
public Collection getProcesses() {
return processes.values();
}
public Rule getRule(String packageName, String ruleName) {
throw new UnsupportedOperationException();
}
public Query getQuery(String packageName, String queryName) {
throw new UnsupportedOperationException();
}
public RuleBase getRuleBase() {
return null;
}
public Set getEntryPointIds() {
throw new UnsupportedOperationException("Entry points not supported");
}
public Collection getKiePackages() {
return getKiePackages();
}
public KiePackage getKiePackage(String packageName) {
return getKnowledgePackage(packageName);
}
public void removeKiePackage(String packageName) {
removeKnowledgePackage(packageName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy