Class IncidentStatisticsEntity
- java.lang.Object
-
- org.camunda.bpm.engine.impl.persistence.entity.IncidentStatisticsEntity
-
- All Implemented Interfaces:
IncidentStatistics
public class IncidentStatisticsEntity extends Object implements IncidentStatistics
- Author:
- roman.smirnov
-
-
Field Summary
Fields Modifier and Type Field Description protected intincidentCountprotected StringincidentType
-
Constructor Summary
Constructors Constructor Description IncidentStatisticsEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIncidentCount()Returns the number of incidents to the corresponding incidentType.StringgetIncidentType()Returns the type of the incidents.voidsetIncidenType(String incidentType)StringtoString()
-
-
-
Field Detail
-
incidentType
protected String incidentType
-
incidentCount
protected int incidentCount
-
-
Method Detail
-
getIncidentType
public String getIncidentType()
Description copied from interface:IncidentStatisticsReturns the type of the incidents.- Specified by:
getIncidentTypein interfaceIncidentStatistics
-
setIncidenType
public void setIncidenType(String incidentType)
-
getIncidentCount
public int getIncidentCount()
Description copied from interface:IncidentStatisticsReturns the number of incidents to the corresponding incidentType.- Specified by:
getIncidentCountin interfaceIncidentStatistics
-
-