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 int
incidentCount
protected String
incidentType
-
Constructor Summary
Constructors Constructor Description IncidentStatisticsEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getIncidentCount()
Returns the number of incidents to the corresponding incidentType.String
getIncidentType()
Returns the type of the incidents.void
setIncidenType(String incidentType)
String
toString()
-
-
-
Field Detail
-
incidentType
protected String incidentType
-
incidentCount
protected int incidentCount
-
-
Method Detail
-
getIncidentType
public String getIncidentType()
Description copied from interface:IncidentStatistics
Returns the type of the incidents.- Specified by:
getIncidentType
in interfaceIncidentStatistics
-
setIncidenType
public void setIncidenType(String incidentType)
-
getIncidentCount
public int getIncidentCount()
Description copied from interface:IncidentStatistics
Returns the number of incidents to the corresponding incidentType.- Specified by:
getIncidentCount
in interfaceIncidentStatistics
-
-