Bug 1242854

Summary: ⁠ 4.14.1.3. Creating a work item handler
Product: [Retired] JBoss BPMS Platform 6 Reporter: Abhijit humbe <abhumbe>
Component: DocumentationAssignee: brms-docs <brms-docs>
Status: CLOSED EOL QA Contact: Lukáš Petrovický <lpetrovi>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 6.1.0CC: akohno, brms-docs
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Build Name: 22833, User Guide-6.1 Build Date: 16-04-2015 12:07:42 Topic ID: 21927-710705 [Latest]
Last Closed: 2020-03-27 19:08:42 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Abhijit humbe 2015-07-14 09:29:34 UTC
Title: Creating a work item handler
As per section '4.14.1.3. Creating a work item handler', to register WorkItemHandler we have to modify "business-central.war/WEB-INF/classes/META-INF/CustomWorkItemHandlers.conf" file. But with BPMS 6.1 release this file is not shipped. 

Describe the issue:


Suggestions for improvement:


Additional information:
In BPMS 6.1 we can register WorkItemHadler through kmodule.xml or through kie-deployment-descriptor.xml. Registering WorkItemHandler through kmodule.xml is covered in documentation. Using kie-deployment-descriptor.xml we can register handler like as:

~~~~~
. . . 
<work-item-handler>
<resolver>mvel</resolver>
<identifier>new org.jbpm.process.workitem.rest.RESTWorkItemHandler("", "")</identifier>
<parameters/>
<name>Rest</name>
</work-item-handler>
. .. 
~~~~~