getBusinessKey() on DelegateExecution returns null
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-27-2011 09:18 PM
Since Activiti 5.6, it's possible to retrieve business key from DelegateExecution in JavaDelegate task, which is great! It works in most cases. However, I came across a case where delegateExecution.getBusinessKey() returns null.
I have the following definition:
<parallelGateway id="fork" />
<sequenceFlow id="flow140" sourceRef="fork" targetRef="meetingUserTask" />
<sequenceFlow id="flow150" sourceRef="fork" targetRef="meetingDelegateTask" />
meetingUserTask refers to a user task and meetingDelegateTask refers to a JavaDelegate task.
When I try to retrieve the business key from meetingDelegateTask, I get null back.
It seems like a bug, but maybe there is a work around for it.
Your help is greatly appreciated.
I have the following definition:
<parallelGateway id="fork" />
<sequenceFlow id="flow140" sourceRef="fork" targetRef="meetingUserTask" />
<sequenceFlow id="flow150" sourceRef="fork" targetRef="meetingDelegateTask" />
meetingUserTask refers to a user task and meetingDelegateTask refers to a JavaDelegate task.
When I try to retrieve the business key from meetingDelegateTask, I get null back.
It seems like a bug, but maybe there is a work around for it.
Your help is greatly appreciated.
Labels:
- Labels:
-
Archive
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-28-2011 02:54 AM
I see what the problem is… We have 2 DelegateExecution implementing classes. The ExecutionEntity returns it's own business-key member field, while the ExecutionImpl returns the businesskey retrieved from the processInstance.
I'll reopen the issue http://jira.codehaus.org/browse/ACT-730 and fix it in 5.7 release. Since the getBusinessKey() is used in persistence, having the ExecutionEntity return the process-instance's businesskey on getBusinessKey() is not an option, it will probabily be called getProcessBusinessKey().
I'll reopen the issue http://jira.codehaus.org/browse/ACT-730 and fix it in 5.7 release. Since the getBusinessKey() is used in persistence, having the ExecutionEntity return the process-instance's businesskey on getBusinessKey() is not an option, it will probabily be called getProcessBusinessKey().
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-28-2011 02:54 PM
Thanks for the quick reply and for the fix in 5.7!
In the meantime to work around the issue, I am going to cheat by casting delegateExecution to ExecutionEntity:
((ExecutionEntity)delegateExecution).getProcessInstance().getBusinessKey();
In the meantime to work around the issue, I am going to cheat by casting delegateExecution to ExecutionEntity:
((ExecutionEntity)delegateExecution).getProcessInstance().getBusinessKey();
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2016 11:43 PM
Hi,
I am trying to get ProcessBusinesskey on startEvent of Process by ExecutionListener, but it is returning null.
None of them works:
execution.getProcessBusinessKey()
execution.getBusinessKey()
Pls, can you suggest method to do it?
I am trying to get ProcessBusinesskey on startEvent of Process by ExecutionListener, but it is returning null.
None of them works:
execution.getProcessBusinessKey()
execution.getBusinessKey()
Pls, can you suggest method to do it?
