auto generated id

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2013 03:30 AM
how id is automatically generated for all elements…
i want to know which class generate this id….
please help me out..
i want to know which class generate this id….
please help me out..
Labels:
- Labels:
-
Archive
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2013 08:05 AM
I presume you're referring to the ID's of bpmn-elements in the activiti-designer?
Or do you mean entity ID's? ->IDGenerator
Or do you mean entity ID's? ->IDGenerator

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2013 08:22 AM
id which is generated for each bpmn element…
e.g.
for user task
<userTask id="sid-F44F697C-1E14-4DB1-8A40-17416C487414"></userTask>
i want to know which class generate this id or how it is generated…
e.g.
for user task
<userTask id="sid-F44F697C-1E14-4DB1-8A40-17416C487414"></userTask>
i want to know which class generate this id or how it is generated…
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2013 03:14 AM
org.activiti.designer.util.eclipse.ActivitiUiUtil
protected String getNextId() {
return ActivitiUiUtil.getNextId(getFeatureClass(), getFeatureIdKey(), getDiagram());
}
