Class ProcessElementInstanceImpl
- java.lang.Object
-
- org.camunda.bpm.engine.impl.persistence.entity.ProcessElementInstanceImpl
-
- All Implemented Interfaces:
ProcessElementInstance
- Direct Known Subclasses:
ActivityInstanceImpl
,TransitionInstanceImpl
public class ProcessElementInstanceImpl extends Object implements ProcessElementInstance
- Author:
- Daniel Meyer
-
-
Field Summary
Fields Modifier and Type Field Description protected String
id
protected static String[]
NO_IDS
protected String
parentActivityInstanceId
protected String
processDefinitionId
protected String
processInstanceId
-
Constructor Summary
Constructors Constructor Description ProcessElementInstanceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
The id of the process element instanceString
getParentActivityInstanceId()
The id of the parent activity instance.String
getProcessDefinitionId()
the process definition idString
getProcessInstanceId()
the id of the process instance this process element is part ofvoid
setId(String id)
void
setParentActivityInstanceId(String parentActivityInstanceId)
void
setProcessDefinitionId(String processDefinitionId)
void
setProcessInstanceId(String processInstanceId)
String
toString()
-
-
-
Method Detail
-
getId
public String getId()
Description copied from interface:ProcessElementInstance
The id of the process element instance- Specified by:
getId
in interfaceProcessElementInstance
-
setId
public void setId(String id)
-
getParentActivityInstanceId
public String getParentActivityInstanceId()
Description copied from interface:ProcessElementInstance
The id of the parent activity instance.- Specified by:
getParentActivityInstanceId
in interfaceProcessElementInstance
-
setParentActivityInstanceId
public void setParentActivityInstanceId(String parentActivityInstanceId)
-
getProcessInstanceId
public String getProcessInstanceId()
Description copied from interface:ProcessElementInstance
the id of the process instance this process element is part of- Specified by:
getProcessInstanceId
in interfaceProcessElementInstance
-
setProcessInstanceId
public void setProcessInstanceId(String processInstanceId)
-
getProcessDefinitionId
public String getProcessDefinitionId()
Description copied from interface:ProcessElementInstance
the process definition id- Specified by:
getProcessDefinitionId
in interfaceProcessElementInstance
-
setProcessDefinitionId
public void setProcessDefinitionId(String processDefinitionId)
-
-