Package org.activiti.engine.parse
Interface BpmnParseHandler
- All Known Implementing Classes:
AbstractActivityBpmnParseHandler,AbstractBpmnParseHandler,AbstractFlowNodeBpmnParseHandler,AdhocSubProcessParseHandler,BoundaryEventParseHandler,BusinessRuleParseHandler,CallActivityParseHandler,CancelEventDefinitionParseHandler,CompensateEventDefinitionParseHandler,EndEventParseHandler,ErrorEventDefinitionParseHandler,EventBasedGatewayParseHandler,EventSubProcessParseHandler,ExclusiveGatewayParseHandler,InclusiveGatewayParseHandler,IntermediateCatchEventParseHandler,IntermediateThrowEventParseHandler,LinkEventDefinitionParseHandler,ManualTaskParseHandler,MessageEventDefinitionParseHandler,ParallelGatewayParseHandler,ProcessParseHandler,ReceiveTaskParseHandler,ScriptTaskParseHandler,SendTaskParseHandler,SequenceFlowParseHandler,ServiceTaskParseHandler,SignalEventDefinitionParseHandler,StartEventParseHandler,SubProcessParseHandler,TaskParseHandler,TimerEventDefinitionParseHandler,TransactionParseHandler,UserTaskParseHandler
Allows to hook into the parsing of one or more elements during the parsing of a BPMN 2.0 process. For more details, see the userguide section on bpmn parse handlers.
Instances of this class can be injected into the
ProcessEngineConfigurationImpl. The handler will then be called whenever a BPMN 2.0 element is parsed that matches the types returned by the
getHandledTypes() method.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionCollection<Class<? extends org.activiti.bpmn.model.BaseElement>> The types for which this handler must be called during process parsing.voidThe actual delegation method.
-
Method Details
-
getHandledTypes
Collection<Class<? extends org.activiti.bpmn.model.BaseElement>> getHandledTypes()The types for which this handler must be called during process parsing. -
parse
The actual delegation method. The parser will calls this method on a match with thegetHandledTypes()return value.- Parameters:
bpmnParse- TheBpmnParseinstance that acts as container for all things produced during the parsing.
-