Class CamundaTaskEvent
- java.lang.Object
-
- pro.taskana.adapter.camunda.outbox.rest.model.CamundaTaskEvent
-
- All Implemented Interfaces:
Serializable
public class CamundaTaskEvent extends Object implements Serializable
POJO that represents an event in the camunda outbox table.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CamundaTaskEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBlockedUntil()StringgetCamundaTaskId()StringgetCreated()StringgetError()intgetId()StringgetPayload()intgetRemainingRetries()StringgetSystemEngineIdentifier()StringgetType()voidsetBlockedUntil(String blockedUntil)voidsetCamundaTaskId(String camundaTaskId)voidsetCreated(String created)voidsetError(String error)voidsetId(int id)voidsetPayload(String payload)voidsetRemainingRetries(int remainingRetries)voidsetSystemEngineIdentifier(String systemEngineIdentifier)voidsetType(String type)StringtoString()
-
-
-
Method Detail
-
getId
public int getId()
-
setId
public void setId(int id)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getCreated
public String getCreated()
-
setCreated
public void setCreated(String created)
-
getPayload
public String getPayload()
-
setPayload
public void setPayload(String payload)
-
getRemainingRetries
public int getRemainingRetries()
-
setRemainingRetries
public void setRemainingRetries(int remainingRetries)
-
getBlockedUntil
public String getBlockedUntil()
-
setBlockedUntil
public void setBlockedUntil(String blockedUntil)
-
getError
public String getError()
-
setError
public void setError(String error)
-
getCamundaTaskId
public String getCamundaTaskId()
-
setCamundaTaskId
public void setCamundaTaskId(String camundaTaskId)
-
getSystemEngineIdentifier
public String getSystemEngineIdentifier()
-
setSystemEngineIdentifier
public void setSystemEngineIdentifier(String systemEngineIdentifier)
-
-