📄 abstractserviceimpl.java
字号:
package org.jbpm.service;
import org.apache.commons.logging.*;
import org.jbpm.*;
import org.jbpm.persistence.*;
public abstract class AbstractServiceImpl {
protected PersistenceSessionFactory persistenceSessionFactory = null;
protected FileMgr fileMgr = null;
protected AbstractServiceImpl( JbpmConfiguration jbpmConfiguration ) {
persistenceSessionFactory = (PersistenceSessionFactory) jbpmConfiguration.instantiate( "jbpm.persistence.session.factory", PersistenceSessionFactory.class );
fileMgr = (FileMgr) jbpmConfiguration.instantiate( "jbpm.file.mgr", FileMgr.class );
}
public AbstractServiceImpl(ExecutionReadServiceImpl executionReadService, PersistenceSessionTx sessionTx) {
persistenceSessionFactory = new ReentrantSessionFactory( sessionTx );
}
private static Log log = LogFactory.getLog(AbstractServiceImpl.class);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -