jBPM distribution 6.0.2-SNAPSHOT

org.jbpm.runtime.manager.api
Interface WorkItemHandlerProducer

All Known Implementing Classes:
AsyncHandlerProducer

public interface WorkItemHandlerProducer

Allows to provide custom implementations to deliver WorkItem name and WorkItemHandler instance pairs for the runtime.
It will be invoked by RegisterableItemsFactory implementation (especially InjectableRegisterableItemsFactory in CDI world) for every KieSession. Recommendation is to always produce new instances to avoid unexpected results.


Method Summary
 Map<String,WorkItemHandler> getWorkItemHandlers(String identifier, Map<String,Object> params)
          Returns map of (key = work item name, value work item handler instance) of work items to be registered on KieSession
Parameters that might be given are as follows: ksession taskService runtimeManager
 

Method Detail

getWorkItemHandlers

Map<String,WorkItemHandler> getWorkItemHandlers(String identifier,
                                                Map<String,Object> params)
Returns map of (key = work item name, value work item handler instance) of work items to be registered on KieSession
Parameters that might be given are as follows:

Parameters:
identifier - - identifier of the owner - usually RuntimeManager that allows the producer to filter out and provide valid instances for given owner
params - - owner might provide some parameters, usually KieSession, TaskService, RuntimeManager instances
Returns:
map of work item handler instances (recommendation is to always return new instances when this method is invoked)

jBPM distribution 6.0.2-SNAPSHOT

Copyright © 2001-2014 JBoss by Red Hat. All Rights Reserved.