any api to get the current node?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2011 06:22 AM
hi
is there any api to get the current-node name from processInstance or proccessDefinition?
when I start a processInstance, calling 'startProcessInstanceById(processDefId)', and the method return a processInstance
I want to get the current-node name from this instance, can I? if not, any other api to get the current-node name?
thanks for any advices
is there any api to get the current-node name from processInstance or proccessDefinition?
when I start a processInstance, calling 'startProcessInstanceById(processDefId)', and the method return a processInstance
I want to get the current-node name from this instance, can I? if not, any other api to get the current-node name?
thanks for any advices
Labels:
- Labels:
-
Archive
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2011 04:47 AM
runtimeService:
/** Finds the activity ids for all executions that are waiting in activities.
* This is a list because a single activity can be active multiple times.
* @param executionId id of the execution, cannot be null.
* @throws ActivitiException when no execution exists with the given executionId.
*/
List<String> getActiveActivityIds(String executionId);
/** Finds the activity ids for all executions that are waiting in activities.
* This is a list because a single activity can be active multiple times.
* @param executionId id of the execution, cannot be null.
* @throws ActivitiException when no execution exists with the given executionId.
*/
List<String> getActiveActivityIds(String executionId);
