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 Stringidprotected static String[]NO_IDSprotected StringparentActivityInstanceIdprotected StringprocessDefinitionIdprotected StringprocessInstanceId
-
Constructor Summary
Constructors Constructor Description ProcessElementInstanceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()The id of the process element instanceStringgetParentActivityInstanceId()The id of the parent activity instance.StringgetProcessDefinitionId()the process definition idStringgetProcessInstanceId()the id of the process instance this process element is part ofvoidsetId(String id)voidsetParentActivityInstanceId(String parentActivityInstanceId)voidsetProcessDefinitionId(String processDefinitionId)voidsetProcessInstanceId(String processInstanceId)StringtoString()
-
-
-
Method Detail
-
getId
public String getId()
Description copied from interface:ProcessElementInstanceThe id of the process element instance- Specified by:
getIdin interfaceProcessElementInstance
-
setId
public void setId(String id)
-
getParentActivityInstanceId
public String getParentActivityInstanceId()
Description copied from interface:ProcessElementInstanceThe id of the parent activity instance.- Specified by:
getParentActivityInstanceIdin interfaceProcessElementInstance
-
setParentActivityInstanceId
public void setParentActivityInstanceId(String parentActivityInstanceId)
-
getProcessInstanceId
public String getProcessInstanceId()
Description copied from interface:ProcessElementInstancethe id of the process instance this process element is part of- Specified by:
getProcessInstanceIdin interfaceProcessElementInstance
-
setProcessInstanceId
public void setProcessInstanceId(String processInstanceId)
-
getProcessDefinitionId
public String getProcessDefinitionId()
Description copied from interface:ProcessElementInstancethe process definition id- Specified by:
getProcessDefinitionIdin interfaceProcessElementInstance
-
setProcessDefinitionId
public void setProcessDefinitionId(String processDefinitionId)
-
-