Interface ActivityStatistics
-
- All Known Implementing Classes:
ActivityStatisticsImpl
public interface ActivityStatistics
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getFailedJobs()
The number of all failed jobs for the activity.String
getId()
The activity id.List<IncidentStatistics>
getIncidentStatistics()
Returns a list of incident statistics.int
getInstances()
The number of all instances of the activity.
-
-
-
Method Detail
-
getId
String getId()
The activity id.
-
getInstances
int getInstances()
The number of all instances of the activity.
-
getFailedJobs
int getFailedJobs()
The number of all failed jobs for the activity.
-
getIncidentStatistics
List<IncidentStatistics> getIncidentStatistics()
Returns a list of incident statistics.
-
-