jBPM distribution 6.0.0.CR5

Uses of Interface
org.kie.api.runtime.process.WorkItemHandler

Packages that use WorkItemHandler
org.jbpm.bpmn2.handler   
org.jbpm.executor.impl.runtime   
org.jbpm.executor.impl.wih   
org.jbpm.kie.services.impl   
org.jbpm.process.instance.impl.demo   
org.jbpm.process.instance.impl.humantask   
org.jbpm.process.workitem   
org.jbpm.process.workitem.archive   
org.jbpm.process.workitem.email   
org.jbpm.process.workitem.exec   
org.jbpm.process.workitem.ftp   
org.jbpm.process.workitem.handler   
org.jbpm.process.workitem.jabber   
org.jbpm.process.workitem.java   
org.jbpm.process.workitem.rest   
org.jbpm.process.workitem.rss   
org.jbpm.process.workitem.transform   
org.jbpm.process.workitem.webservice   
org.jbpm.runtime.manager.api   
org.jbpm.runtime.manager.impl   
org.jbpm.runtime.manager.impl.cdi   
org.jbpm.services.task.wih   
org.jbpm.test   
org.kie.api.command   
org.kie.api.runtime.conf   
org.kie.api.runtime.process The process runtime classes. 
 

Uses of WorkItemHandler in org.jbpm.bpmn2.handler
 

Classes in org.jbpm.bpmn2.handler that implement WorkItemHandler
 class AbstractExceptionHandlingTaskHandler
           
 class LoggingTaskHandlerDecorator
          This class is a WorkItemHandler implementation that is meant to wrap other WorkItemHandler implementations.
 class ReceiveTaskHandler
           
 class SendTaskHandler
           
 class ServiceTaskHandler
           
 class SignallingTaskHandlerDecorator
          This class will wrap a WorkItemHandler instance so that an event (signal, error or other) can be sent to the process instance if and when the wrapped WorkItemHandler instance throws an exception (during a executeWorkItem(WorkItem, WorkItemManager) or abortWorkItem(WorkItem, WorkItemManager) method.
 

Methods in org.jbpm.bpmn2.handler that return WorkItemHandler
 WorkItemHandler AbstractExceptionHandlingTaskHandler.getOriginalTaskHandler()
           
 

Constructors in org.jbpm.bpmn2.handler with parameters of type WorkItemHandler
AbstractExceptionHandlingTaskHandler(WorkItemHandler originalTaskHandler)
           
LoggingTaskHandlerDecorator(WorkItemHandler originalTaskHandler)
          Constructs a LoggingTaskHandlerDecorator instance that wraps the given WorkItemHandler instance.
SignallingTaskHandlerDecorator(WorkItemHandler originalTaskHandler, String eventType)
           
 

Constructor parameters in org.jbpm.bpmn2.handler with type arguments of type WorkItemHandler
AbstractExceptionHandlingTaskHandler(Class<? extends WorkItemHandler> originalTaskHandlerClass)
           
LoggingTaskHandlerDecorator(Class<? extends WorkItemHandler> originalTaskHandlerClass)
          Constructs an LoggingTaskHandlerDecorator instance that wraps a created instance of the WorkItemHandler class given.
LoggingTaskHandlerDecorator(Class<? extends WorkItemHandler> originalTaskHandlerClass, int logLimit)
          Constructs an LoggingTaskHandlerDecorator instance that wraps a created instance of the WorkItemHandler class given.
SignallingTaskHandlerDecorator(Class<? extends WorkItemHandler> originalTaskHandlerClass, String eventType)
          Constructs an instance that uses the given eventType parameter to signal the process instance using the given KieSession ksession parameter when an instance of the class specified by the originalTaskHandlerClass throws an exception upon executeWorkItem(WorkItem, WorkItemManager)
 

Uses of WorkItemHandler in org.jbpm.executor.impl.runtime
 

Methods in org.jbpm.executor.impl.runtime that return types with arguments of type WorkItemHandler
 Map<String,WorkItemHandler> AsyncHandlerProducer.getWorkItemHandlers(String identifier, Map<String,Object> params)
           
 

Uses of WorkItemHandler in org.jbpm.executor.impl.wih
 

Classes in org.jbpm.executor.impl.wih that implement WorkItemHandler
 class AsyncWorkItemHandler
          Asynchronous work item handler that utilizes power of ExecutorService.
 

Uses of WorkItemHandler in org.jbpm.kie.services.impl
 

Methods in org.jbpm.kie.services.impl that return types with arguments of type WorkItemHandler
 Map<String,WorkItemHandler> VfsMVELWorkItemHandlerProducer.getWorkItemHandlers(String identifier, Map<String,Object> params)
           
 

Uses of WorkItemHandler in org.jbpm.process.instance.impl.demo
 

Classes in org.jbpm.process.instance.impl.demo that implement WorkItemHandler
 class DoNothingWorkItemHandler
           
 class SystemOutWorkItemHandler
           
 class UIWorkItemHandler
           
 

Uses of WorkItemHandler in org.jbpm.process.instance.impl.humantask
 

Classes in org.jbpm.process.instance.impl.humantask that implement WorkItemHandler
 class HumanTaskHandler
           
 

Uses of WorkItemHandler in org.jbpm.process.workitem
 

Classes in org.jbpm.process.workitem that implement WorkItemHandler
 class AbstractLogOrThrowWorkItemHandler
           
 class AbstractWorkItemHandler
           
 

Uses of WorkItemHandler in org.jbpm.process.workitem.archive
 

Classes in org.jbpm.process.workitem.archive that implement WorkItemHandler
 class ArchiveWorkItemHandler
           
 

Uses of WorkItemHandler in org.jbpm.process.workitem.email
 

Classes in org.jbpm.process.workitem.email that implement WorkItemHandler
 class EmailWorkItemHandler
          WorkItemHandler for sending email.
 

Uses of WorkItemHandler in org.jbpm.process.workitem.exec
 

Classes in org.jbpm.process.workitem.exec that implement WorkItemHandler
 class ExecWorkItemHandler
           
 

Uses of WorkItemHandler in org.jbpm.process.workitem.ftp
 

Classes in org.jbpm.process.workitem.ftp that implement WorkItemHandler
 class FTPUploadWorkItemHandler
           
 

Uses of WorkItemHandler in org.jbpm.process.workitem.handler
 

Classes in org.jbpm.process.workitem.handler that implement WorkItemHandler
 class JavaHandlerWorkItemHandler
           
 

Uses of WorkItemHandler in org.jbpm.process.workitem.jabber
 

Classes in org.jbpm.process.workitem.jabber that implement WorkItemHandler
 class JabberWorkItemHandler
           
 

Uses of WorkItemHandler in org.jbpm.process.workitem.java
 

Classes in org.jbpm.process.workitem.java that implement WorkItemHandler
 class JavaInvocationWorkItemHandler
           
 

Uses of WorkItemHandler in org.jbpm.process.workitem.rest
 

Classes in org.jbpm.process.workitem.rest that implement WorkItemHandler
 class RestGeoCodeApiCallWorkItemHandler
           
 class RESTWorkItemHandler
          WorkItemHandler that is capable of interacting with REST service.
 

Uses of WorkItemHandler in org.jbpm.process.workitem.rss
 

Classes in org.jbpm.process.workitem.rss that implement WorkItemHandler
 class RSSWorkItemHandler
           
 

Uses of WorkItemHandler in org.jbpm.process.workitem.transform
 

Classes in org.jbpm.process.workitem.transform that implement WorkItemHandler
 class TransformWorkItemHandler
           
 

Uses of WorkItemHandler in org.jbpm.process.workitem.webservice
 

Classes in org.jbpm.process.workitem.webservice that implement WorkItemHandler
 class WebServiceWorkItemHandler
           
 

Uses of WorkItemHandler in org.jbpm.runtime.manager.api
 

Methods in org.jbpm.runtime.manager.api that return types with arguments of type WorkItemHandler
 Map<String,WorkItemHandler> WorkItemHandlerProducer.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
 

Uses of WorkItemHandler in org.jbpm.runtime.manager.impl
 

Methods in org.jbpm.runtime.manager.impl that return WorkItemHandler
protected  WorkItemHandler DefaultRegisterableItemsFactory.getHTWorkItemHandler(RuntimeEngine runtime)
           
 

Methods in org.jbpm.runtime.manager.impl that return types with arguments of type WorkItemHandler
 Map<String,WorkItemHandler> SimpleRegisterableItemsFactory.getWorkItemHandlers(RuntimeEngine runtime)
           
 Map<String,WorkItemHandler> KModuleRegisterableItemsFactory.getWorkItemHandlers(RuntimeEngine runtime)
           
 Map<String,WorkItemHandler> DefaultRegisterableItemsFactory.getWorkItemHandlers(RuntimeEngine runtime)
           
 

Method parameters in org.jbpm.runtime.manager.impl with type arguments of type WorkItemHandler
 void SimpleRegisterableItemsFactory.addWorkItemHandler(String name, Class<? extends WorkItemHandler> clazz)
           
 

Uses of WorkItemHandler in org.jbpm.runtime.manager.impl.cdi
 

Methods in org.jbpm.runtime.manager.impl.cdi that return WorkItemHandler
protected  WorkItemHandler InjectableRegisterableItemsFactory.getHTWorkItemHandler(RuntimeEngine runtime)
           
 

Methods in org.jbpm.runtime.manager.impl.cdi that return types with arguments of type WorkItemHandler
 Map<String,WorkItemHandler> InjectableRegisterableItemsFactory.getWorkItemHandlers(RuntimeEngine runtime)
           
 

Uses of WorkItemHandler in org.jbpm.services.task.wih
 

Classes in org.jbpm.services.task.wih that implement WorkItemHandler
 class AbstractHTWorkItemHandler
           
 class LocalHTWorkItemHandler
           
 class NonManagedLocalHTWorkItemHandler
          LocalHumanTaskHandler that is intended to be used when RuntimeManager is not used, most likely in backward compatible cases where simply providing: KieSession TaskService is usual case.
 

Uses of WorkItemHandler in org.jbpm.test
 

Classes in org.jbpm.test that implement WorkItemHandler
protected static class JbpmJUnitBaseTestCase.TestWorkItemHandler
           
static class JbpmJUnitTestCase.TestWorkItemHandler
          Deprecated.  
 

Uses of WorkItemHandler in org.kie.api.command
 

Methods in org.kie.api.command with parameters of type WorkItemHandler
 Command KieCommands.newRegisterWorkItemHandlerCommand(WorkItemHandler handler, String workItemName)
           
 

Uses of WorkItemHandler in org.kie.api.runtime.conf
 

Methods in org.kie.api.runtime.conf that return WorkItemHandler
 WorkItemHandler WorkItemHandlerOption.getHandler()
          Returns the work item handler instance
 

Methods in org.kie.api.runtime.conf with parameters of type WorkItemHandler
static WorkItemHandlerOption WorkItemHandlerOption.get(String name, WorkItemHandler handler)
          This is a factory method for this WorkItemHandler configuration.
 

Uses of WorkItemHandler in org.kie.api.runtime.process
 

Methods in org.kie.api.runtime.process with parameters of type WorkItemHandler
 void WorkItemManager.registerWorkItemHandler(String workItemName, WorkItemHandler handler)
          Register the given handler for all work items of the given type of work
 


jBPM distribution 6.0.0.CR5

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