Interface DeployedProcess
-
- All Superinterfaces:
JsonSerializable,RecordValue
public interface DeployedProcess extends RecordValue
Represents a deployed process.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBpmnProcessId()byte[]getChecksum()longgetProcessDefinitionKey()byte[]getResource()StringgetResourceName()intgetVersion()-
Methods inherited from interface io.zeebe.protocol.record.JsonSerializable
toJson
-
-
-
-
Method Detail
-
getBpmnProcessId
String getBpmnProcessId()
- Returns:
- the bpmn process ID of this process
-
getVersion
int getVersion()
- Returns:
- the version of this process
-
getProcessDefinitionKey
long getProcessDefinitionKey()
- Returns:
- the key of this process
-
getResourceName
String getResourceName()
- Returns:
- the name of the resource through which this process was deployed
-
getChecksum
byte[] getChecksum()
- Returns:
- the checksum of the process (MD5)
-
getResource
byte[] getResource()
- Returns:
- returns the corresponding binary resource
-
-