org.activiti.engine
接口 ProcessEngine

所有超级接口:
EngineServices
所有已知实现类:
ProcessEngineImpl

public interface ProcessEngine
extends EngineServices

Provides access to all the services that expose the BPM and workflow operations.

Typically, there will be only one central ProcessEngine instance needed in a end-user application. Building a ProcessEngine is done through a ProcessEngineConfiguration instance and is a costly operation which should be avoided. For that purpose, it is advised to store it in a static field or JNDI location (or something similar). This is a thread-safe object, so no special precautions need to be taken.

作者:
Tom Baeyens, Joram Barrez

字段摘要
static String VERSION
          the version of the activiti library
 
方法摘要
 void close()
           
 String getName()
          The name as specified in 'process-engine-name' in the activiti.cfg.xml configuration file.
 
从接口 org.activiti.engine.EngineServices 继承的方法
getFormService, getHistoryService, getIdentityService, getManagementService, getRepositoryService, getRuntimeService, getTaskService
 

字段详细信息

VERSION

static final String VERSION
the version of the activiti library

另请参见:
常量字段值
方法详细信息

getName

String getName()
The name as specified in 'process-engine-name' in the activiti.cfg.xml configuration file. The default name for a process engine is 'default


close

void close()


Copyright © 2013 Alfresco. All rights reserved.