Class HistoricActivityStatisticsDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.history.HistoricActivityStatisticsDto
-
public class HistoricActivityStatisticsDto extends Object
- Author:
- Roman Smirnov
-
-
Field Summary
Fields Modifier and Type Field Description protected longcanceledprotected longcompleteScopeprotected longdeletedIncidentsprotected longfinishedprotected Stringidprotected longinstancesprotected longopenIncidentsprotected longresolvedIncidents
-
Constructor Summary
Constructors Constructor Description HistoricActivityStatisticsDto()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HistoricActivityStatisticsDtofromHistoricActivityStatistics(org.camunda.bpm.engine.history.HistoricActivityStatistics statistics)longgetCanceled()longgetCompleteScope()longgetDeletedIncidents()longgetFinished()StringgetId()longgetInstances()longgetOpenIncidents()longgetResolvedIncidents()
-
-
-
Field Detail
-
id
protected String id
-
instances
protected long instances
-
canceled
protected long canceled
-
finished
protected long finished
-
completeScope
protected long completeScope
-
openIncidents
protected long openIncidents
-
resolvedIncidents
protected long resolvedIncidents
-
deletedIncidents
protected long deletedIncidents
-
-
Method Detail
-
getId
public String getId()
-
getInstances
public long getInstances()
-
getCanceled
public long getCanceled()
-
getFinished
public long getFinished()
-
getCompleteScope
public long getCompleteScope()
-
getOpenIncidents
public long getOpenIncidents()
-
getResolvedIncidents
public long getResolvedIncidents()
-
getDeletedIncidents
public long getDeletedIncidents()
-
fromHistoricActivityStatistics
public static HistoricActivityStatisticsDto fromHistoricActivityStatistics(org.camunda.bpm.engine.history.HistoricActivityStatistics statistics)
-
-