Class TaskReportResultEntity
- java.lang.Object
-
- org.camunda.bpm.engine.impl.persistence.entity.TaskReportResultEntity
-
- All Implemented Interfaces:
HistoricTaskInstanceReportResult
public class TaskReportResultEntity extends Object implements HistoricTaskInstanceReportResult
- Author:
- Stefan Hentschel.
-
-
Field Summary
Fields Modifier and Type Field Description protected Long
count
protected String
processDefinitionId
protected String
processDefinitionKey
protected String
processDefinitionName
protected String
taskName
protected String
tenantId
-
Constructor Summary
Constructors Constructor Description TaskReportResultEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
getCount()
Returns the count of the grouped items.String
getProcessDefinitionId()
Returns the process definition id for the selected definition keyString
getProcessDefinitionKey()
Returns the process definition key for the selected definition key.String
getProcessDefinitionName()
String
getTaskName()
Returns the name of the taskString
getTenantId()
Returns the id of the tenant taskvoid
setCount(Long count)
void
setProcessDefinitionId(String processDefinitionId)
void
setProcessDefinitionKey(String processDefinitionKey)
void
setProcessDefinitionName(String processDefinitionName)
void
setTaskName(String taskName)
void
setTenantId(String tenantId)
String
toString()
-
-
-
Method Detail
-
getCount
public Long getCount()
Description copied from interface:HistoricTaskInstanceReportResult
Returns the count of the grouped items.
- Specified by:
getCount
in interfaceHistoricTaskInstanceReportResult
-
setCount
public void setCount(Long count)
-
getProcessDefinitionKey
public String getProcessDefinitionKey()
Description copied from interface:HistoricTaskInstanceReportResult
Returns the process definition key for the selected definition key.
- Specified by:
getProcessDefinitionKey
in interfaceHistoricTaskInstanceReportResult
-
setProcessDefinitionKey
public void setProcessDefinitionKey(String processDefinitionKey)
-
getProcessDefinitionId
public String getProcessDefinitionId()
Description copied from interface:HistoricTaskInstanceReportResult
Returns the process definition id for the selected definition key
- Specified by:
getProcessDefinitionId
in interfaceHistoricTaskInstanceReportResult
-
setProcessDefinitionId
public void setProcessDefinitionId(String processDefinitionId)
-
getProcessDefinitionName
public String getProcessDefinitionName()
Description copied from interface:HistoricTaskInstanceReportResult
Returns the process definition name for the selected definition key- Specified by:
getProcessDefinitionName
in interfaceHistoricTaskInstanceReportResult
-
setProcessDefinitionName
public void setProcessDefinitionName(String processDefinitionName)
-
getTaskName
public String getTaskName()
Description copied from interface:HistoricTaskInstanceReportResult
Returns the name of the task
- Specified by:
getTaskName
in interfaceHistoricTaskInstanceReportResult
- Returns:
- A task name when the query is triggered with a 'countByTaskName'. Else the return value is null.
-
setTaskName
public void setTaskName(String taskName)
-
getTenantId
public String getTenantId()
Description copied from interface:HistoricTaskInstanceReportResult
Returns the id of the tenant task
- Specified by:
getTenantId
in interfaceHistoricTaskInstanceReportResult
-
setTenantId
public void setTenantId(String tenantId)
-
-