org.camunda.bpm.engine.impl.persistence.entity
Class HistoricActivityStatisticsImpl

java.lang.Object
  extended by org.camunda.bpm.engine.impl.persistence.entity.HistoricActivityStatisticsImpl
All Implemented Interfaces:
HistoricActivityStatistics

public class HistoricActivityStatisticsImpl
extends Object
implements HistoricActivityStatistics

Author:
Roman Smirnov

Field Summary
protected  long canceled
           
protected  long completeScope
           
protected  long finished
           
protected  String id
           
protected  long instances
           
 
Constructor Summary
HistoricActivityStatisticsImpl()
           
 
Method Summary
 long getCanceled()
          The number of all canceled instances of the activity.
 long getCompleteScope()
          The number of all instances, which complete a scope (ie.
 long getFinished()
          The number of all finished instances of the activity.
 String getId()
          The activity id.
 long getInstances()
          The number of all running instances of the activity.
 void setCanceled(long canceled)
           
 void setCompleteScope(long completeScope)
           
 void setFinished(long finished)
           
 void setId(String id)
           
 void setInstances(long instances)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

id

protected String id

instances

protected long instances

finished

protected long finished

canceled

protected long canceled

completeScope

protected long completeScope
Constructor Detail

HistoricActivityStatisticsImpl

public HistoricActivityStatisticsImpl()
Method Detail

getId

public String getId()
Description copied from interface: HistoricActivityStatistics
The activity id.

Specified by:
getId in interface HistoricActivityStatistics

setId

public void setId(String id)

getInstances

public long getInstances()
Description copied from interface: HistoricActivityStatistics
The number of all running instances of the activity.

Specified by:
getInstances in interface HistoricActivityStatistics

setInstances

public void setInstances(long instances)

getFinished

public long getFinished()
Description copied from interface: HistoricActivityStatistics
The number of all finished instances of the activity.

Specified by:
getFinished in interface HistoricActivityStatistics

setFinished

public void setFinished(long finished)

getCanceled

public long getCanceled()
Description copied from interface: HistoricActivityStatistics
The number of all canceled instances of the activity.

Specified by:
getCanceled in interface HistoricActivityStatistics

setCanceled

public void setCanceled(long canceled)

getCompleteScope

public long getCompleteScope()
Description copied from interface: HistoricActivityStatistics
The 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:
getCompleteScope in interface HistoricActivityStatistics

setCompleteScope

public void setCompleteScope(long completeScope)


Copyright © 2016 camunda services GmbH. All rights reserved.