org.activiti.engine.impl.bpmn.parser.factory
接口 ListenerFactory
- 所有已知实现类:
- DefaultListenerFactory
public interface ListenerFactory
Factory class used by the BpmnParser
and BpmnParse
to instantiate
the behaviour classes for TaskListener
and ExecutionListener
usages.
You can provide your own implementation of this class. This way, you can give
different execution semantics to the standard construct.
The easiest and advisable way to implement your own ListenerFactory
is to extend the DefaultListenerFactory
.
An instance of this interface can be injected in the ProcessEngineConfigurationImpl
and its subclasses.
- 作者:
- Joram Barrez
createClassDelegateTaskListener
TaskListener createClassDelegateTaskListener(org.activiti.bpmn.model.ActivitiListener activitiListener)
createExpressionTaskListener
TaskListener createExpressionTaskListener(org.activiti.bpmn.model.ActivitiListener activitiListener)
createDelegateExpressionTaskListener
TaskListener createDelegateExpressionTaskListener(org.activiti.bpmn.model.ActivitiListener activitiListener)
createClassDelegateExecutionListener
ExecutionListener createClassDelegateExecutionListener(org.activiti.bpmn.model.ActivitiListener activitiListener)
createExpressionExecutionListener
ExecutionListener createExpressionExecutionListener(org.activiti.bpmn.model.ActivitiListener activitiListener)
createDelegateExpressionExecutionListener
ExecutionListener createDelegateExpressionExecutionListener(org.activiti.bpmn.model.ActivitiListener activitiListener)
Copyright © 2013 Alfresco. All rights reserved.