Package org.openapitools.client.model
Class HistoricTaskInstanceReportResultDto
- java.lang.Object
-
- org.openapitools.client.model.HistoricTaskInstanceReportResultDto
-
public class HistoricTaskInstanceReportResultDto extends Object
HistoricTaskInstanceReportResultDto
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHistoricTaskInstanceReportResultDto.PeriodUnitEnumThe unit of the given period.
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_AVERAGEstatic StringSERIALIZED_NAME_COUNTstatic StringSERIALIZED_NAME_MAXIMUMstatic StringSERIALIZED_NAME_MINIMUMstatic StringSERIALIZED_NAME_PERIODstatic StringSERIALIZED_NAME_PERIOD_UNITstatic StringSERIALIZED_NAME_PROCESS_DEFINITION_IDstatic StringSERIALIZED_NAME_PROCESS_DEFINITION_KEYstatic StringSERIALIZED_NAME_PROCESS_DEFINITION_NAMEstatic StringSERIALIZED_NAME_TASK_NAME
-
Constructor Summary
Constructors Constructor Description HistoricTaskInstanceReportResultDto()
-
Method Summary
-
-
-
Field Detail
-
SERIALIZED_NAME_TASK_NAME
public static final String SERIALIZED_NAME_TASK_NAME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_COUNT
public static final String SERIALIZED_NAME_COUNT
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PROCESS_DEFINITION_KEY
public static final String SERIALIZED_NAME_PROCESS_DEFINITION_KEY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PROCESS_DEFINITION_ID
public static final String SERIALIZED_NAME_PROCESS_DEFINITION_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PROCESS_DEFINITION_NAME
public static final String SERIALIZED_NAME_PROCESS_DEFINITION_NAME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PERIOD
public static final String SERIALIZED_NAME_PERIOD
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PERIOD_UNIT
public static final String SERIALIZED_NAME_PERIOD_UNIT
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_MINIMUM
public static final String SERIALIZED_NAME_MINIMUM
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_MAXIMUM
public static final String SERIALIZED_NAME_MAXIMUM
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_AVERAGE
public static final String SERIALIZED_NAME_AVERAGE
- See Also:
- Constant Field Values
-
-
Method Detail
-
taskName
public HistoricTaskInstanceReportResultDto taskName(String taskName)
-
getTaskName
public String getTaskName()
The name of the task. It is only available when the `groupBy` parameter is set to `taskName`. Else the value is `null`. **Note:** This property is only set for a historic task report object. In these cases, the value of the `reportType` query parameter is `count`.- Returns:
- taskName
-
setTaskName
public void setTaskName(String taskName)
-
count
public HistoricTaskInstanceReportResultDto count(Long count)
-
getCount
public Long getCount()
The number of tasks which have the given definition. **Note:** This property is only set for a historic task report object. In these cases, the value of the `reportType` query parameter is `count`.- Returns:
- count
-
setCount
public void setCount(Long count)
-
processDefinitionKey
public HistoricTaskInstanceReportResultDto processDefinitionKey(String processDefinitionKey)
-
getProcessDefinitionKey
public String getProcessDefinitionKey()
The key of the process definition. **Note:** This property is only set for a historic task report object. In these cases, the value of the `reportType` query parameter is `count`.- Returns:
- processDefinitionKey
-
setProcessDefinitionKey
public void setProcessDefinitionKey(String processDefinitionKey)
-
processDefinitionId
public HistoricTaskInstanceReportResultDto processDefinitionId(String processDefinitionId)
-
getProcessDefinitionId
public String getProcessDefinitionId()
The id of the process definition. **Note:** This property is only set for a historic task report object. In these cases, the value of the `reportType` query parameter is `count`.- Returns:
- processDefinitionId
-
setProcessDefinitionId
public void setProcessDefinitionId(String processDefinitionId)
-
processDefinitionName
public HistoricTaskInstanceReportResultDto processDefinitionName(String processDefinitionName)
-
getProcessDefinitionName
public String getProcessDefinitionName()
The name of the process definition. **Note:** This property is only set for a historic task report object. In these cases, the value of the `reportType` query parameter is `count`.- Returns:
- processDefinitionName
-
setProcessDefinitionName
public void setProcessDefinitionName(String processDefinitionName)
-
period
public HistoricTaskInstanceReportResultDto period(Integer period)
-
getPeriod
public Integer getPeriod()
Specifies a span of time within a year. **Note:** The period must be interpreted in conjunction with the returned `periodUnit`. **Note:** This property is only set for a duration report object. In these cases, the value of the `reportType` query parameter is `duration`.- Returns:
- period
-
setPeriod
public void setPeriod(Integer period)
-
periodUnit
public HistoricTaskInstanceReportResultDto periodUnit(HistoricTaskInstanceReportResultDto.PeriodUnitEnum periodUnit)
-
getPeriodUnit
public HistoricTaskInstanceReportResultDto.PeriodUnitEnum getPeriodUnit()
The unit of the given period. Possible values are `MONTH` and `QUARTER`. **Note:** This property is only set for a duration report object. In these cases, the value of the `reportType` query parameter is `duration`.- Returns:
- periodUnit
-
setPeriodUnit
public void setPeriodUnit(HistoricTaskInstanceReportResultDto.PeriodUnitEnum periodUnit)
-
minimum
public HistoricTaskInstanceReportResultDto minimum(Long minimum)
-
getMinimum
public Long getMinimum()
The smallest duration in milliseconds of all completed process instances which were started in the given period. **Note:** This property is only set for a duration report object. In these cases, the value of the `reportType` query parameter is `duration`.- Returns:
- minimum
-
setMinimum
public void setMinimum(Long minimum)
-
maximum
public HistoricTaskInstanceReportResultDto maximum(Long maximum)
-
getMaximum
public Long getMaximum()
The greatest duration in milliseconds of all completed process instances which were started in the given period. **Note:** This property is only set for a duration report object. In these cases, the value of the `reportType` query parameter is `duration`.- Returns:
- maximum
-
setMaximum
public void setMaximum(Long maximum)
-
average
public HistoricTaskInstanceReportResultDto average(Long average)
-
getAverage
public Long getAverage()
The average duration in milliseconds of all completed process instances which were started in the given period. **Note:** This property is only set for a duration report object. In these cases, the value of the `reportType` query parameter is `duration`.- Returns:
- average
-
setAverage
public void setAverage(Long average)
-
-