Class HistoricActivityStatisticsImpl
- java.lang.Object
- 
- org.camunda.bpm.engine.impl.persistence.entity.HistoricActivityStatisticsImpl
 
- 
- All Implemented Interfaces:
- HistoricActivityStatistics
 
 public class HistoricActivityStatisticsImpl extends java.lang.Object implements HistoricActivityStatistics - Author:
- Roman Smirnov
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected longcanceledprotected longcompleteScopeprotected longdeletedIncidentsprotected longfinishedprotected java.lang.Stringidprotected longinstancesprotected longopenIncidentsprotected longresolvedIncidents
 - 
Constructor SummaryConstructors Constructor Description HistoricActivityStatisticsImpl()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetCanceled()The number of all canceled instances of the activity.longgetCompleteScope()The number of all instances, which complete a scope (ie.longgetDeletedIncidents()The number of deleted incidents of the activity.longgetFinished()The number of all finished instances of the activity.java.lang.StringgetId()The activity id.longgetInstances()The number of all running instances of the activity.longgetOpenIncidents()The number of open incidents of the activity.longgetResolvedIncidents()The number of resolved incidents of the activity.voidsetCanceled(long canceled)voidsetCompleteScope(long completeScope)voidsetDeletedIncidents(long closedIncidents)voidsetFinished(long finished)voidsetId(java.lang.String id)voidsetInstances(long instances)voidsetOpenIncidents(long openIncidents)voidsetResolvedIncidents(long resolvedIncidents)
 
- 
- 
- 
Field Detail- 
idprotected java.lang.String id 
 - 
instancesprotected long instances 
 - 
finishedprotected long finished 
 - 
canceledprotected long canceled 
 - 
completeScopeprotected long completeScope 
 - 
openIncidentsprotected long openIncidents 
 - 
resolvedIncidentsprotected long resolvedIncidents 
 - 
deletedIncidentsprotected long deletedIncidents 
 
- 
 - 
Method Detail- 
getIdpublic java.lang.String getId() Description copied from interface:HistoricActivityStatisticsThe activity id.- Specified by:
- getIdin interface- HistoricActivityStatistics
 
 - 
setIdpublic void setId(java.lang.String id) 
 - 
getInstancespublic long getInstances() Description copied from interface:HistoricActivityStatisticsThe number of all running instances of the activity.- Specified by:
- getInstancesin interface- HistoricActivityStatistics
 
 - 
setInstancespublic void setInstances(long instances) 
 - 
getFinishedpublic long getFinished() Description copied from interface:HistoricActivityStatisticsThe number of all finished instances of the activity.- Specified by:
- getFinishedin interface- HistoricActivityStatistics
 
 - 
setFinishedpublic void setFinished(long finished) 
 - 
getCanceledpublic long getCanceled() Description copied from interface:HistoricActivityStatisticsThe number of all canceled instances of the activity.- Specified by:
- getCanceledin interface- HistoricActivityStatistics
 
 - 
setCanceledpublic void setCanceled(long canceled) 
 - 
getCompleteScopepublic long getCompleteScope() Description copied from interface:HistoricActivityStatisticsThe number of all instances, which complete a scope (ie. in bpmn manner: an activity which consumed a token and did not produced a new one), of the activity.- Specified by:
- getCompleteScopein interface- HistoricActivityStatistics
 
 - 
setCompleteScopepublic void setCompleteScope(long completeScope) 
 - 
getOpenIncidentspublic long getOpenIncidents() Description copied from interface:HistoricActivityStatisticsThe number of open incidents of the activity.- Specified by:
- getOpenIncidentsin interface- HistoricActivityStatistics
 
 - 
setOpenIncidentspublic void setOpenIncidents(long openIncidents) 
 - 
getResolvedIncidentspublic long getResolvedIncidents() Description copied from interface:HistoricActivityStatisticsThe number of resolved incidents of the activity.- Specified by:
- getResolvedIncidentsin interface- HistoricActivityStatistics
 
 - 
setResolvedIncidentspublic void setResolvedIncidents(long resolvedIncidents) 
 - 
getDeletedIncidentspublic long getDeletedIncidents() Description copied from interface:HistoricActivityStatisticsThe number of deleted incidents of the activity.- Specified by:
- getDeletedIncidentsin interface- HistoricActivityStatistics
 
 - 
setDeletedIncidentspublic void setDeletedIncidents(long closedIncidents) 
 
- 
 
-