Package com.priint.pubserver.bpm.model
Class ProcessDefinition
- java.lang.Object
-
- com.priint.pubserver.bpm.model.ProcessDefinition
-
public class ProcessDefinition extends java.lang.ObjectThe Object - represents Process Definition BPM type
-
-
Constructor Summary
Constructors Constructor Description ProcessDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)java.lang.StringgetId()java.lang.StringgetKey()java.lang.StringgetName()java.lang.StringgetTenantId()intgetVersion()inthashCode()voidsetId(java.lang.String id)voidsetKey(java.lang.String key)voidsetName(java.lang.String name)voidsetTenantId(java.lang.String tenantId)voidsetVersion(int version)java.lang.StringtoString()
-
-
-
Method Detail
-
getId
public java.lang.String getId()
- Returns:
String- The id of the process definition.
-
getName
public java.lang.String getName()
- Returns:
String- The name of the process definition.
-
getKey
public java.lang.String getKey()
- Returns:
String- The key of the process definition, i.e., the id of the BPMN 2.0 XML process definition.
-
getVersion
public int getVersion()
- Returns:
String- The version of the process definition that the engine assigned to it.
-
getTenantId
public java.lang.String getTenantId()
- Returns:
String- The tenant id of the process definition.
-
setId
public void setId(java.lang.String id)
- Parameters:
id-String- The id of the process definition.
-
setName
public void setName(java.lang.String name)
- Parameters:
name-String- The name of the process definition.
-
setKey
public void setKey(java.lang.String key)
- Parameters:
key-String- The key of the process definition, i.e., the id of the BPMN 2.0 XML process definition.
-
setVersion
public void setVersion(int version)
- Parameters:
version-String- The version of the process definition that the engine assigned to it.
-
setTenantId
public void setTenantId(java.lang.String tenantId)
- Parameters:
tenantId-String- The tenant id of the process definition.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-