Package io.zeebe.protocol.record.value
Interface ProcessInstanceCreationRecordValue
-
- All Superinterfaces:
JsonSerializable,ProcessInstanceRelated,RecordValue,RecordValueWithVariables
public interface ProcessInstanceCreationRecordValue extends RecordValueWithVariables, ProcessInstanceRelated
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBpmnProcessId()longgetProcessDefinitionKey()intgetVersion()-
Methods inherited from interface io.zeebe.protocol.record.JsonSerializable
toJson
-
Methods inherited from interface io.zeebe.protocol.record.value.ProcessInstanceRelated
getProcessInstanceKey
-
Methods inherited from interface io.zeebe.protocol.record.RecordValueWithVariables
getVariables
-
-
-
-
Method Detail
-
getBpmnProcessId
String getBpmnProcessId()
- Returns:
- the BPMN process id to create a process from
-
getVersion
int getVersion()
- Returns:
- the version of the BPMN process to create a process from
-
getProcessDefinitionKey
long getProcessDefinitionKey()
- Returns:
- the unique key of the BPMN process definition to create a process from
-
-