All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jbpm.session.SessionManager Maven / Gradle / Ivy

There is a newer version: 7.74.1.Final
Show newest version
package org.jbpm.session;

import org.jbpm.task.TaskService;
import org.kie.runtime.StatefulKnowledgeSession;

public interface SessionManager {
	
	StatefulKnowledgeSession getKnowledgeSession();
	
	TaskService getTaskService();
	
	// TODO this shouldn't throw an Exception
	void dispose() throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy