Interface AOTrackingEntry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AOTrackingUser[]
getCurrentResponsibilities()
All the people currently responsible for this failure span.int
getID()
long
getPlanId()
The plan the failures belong toAOTrackingResult[]
getResultIds()
All the results that are part of this failure span.boolean
isActive()
Whether the current failing span is active.void
setActive(boolean active)
void
setPlanId(long planId)
-
-
-
Method Detail
-
getID
int getID()
-
isActive
boolean isActive()
Whether the current failing span is active. i.e. it has not been fixed yet- Returns:
- true if the breakages have not been fixed
-
setActive
void setActive(boolean active)
-
getPlanId
long getPlanId()
The plan the failures belong to- Returns:
- plan database id, that this tracking entry belongs to
-
setPlanId
void setPlanId(long planId)
-
getResultIds
AOTrackingResult[] getResultIds()
All the results that are part of this failure span.- Returns:
- list of
AOTrackingResult
s in this Tracking Entry
-
getCurrentResponsibilities
AOTrackingUser[] getCurrentResponsibilities()
All the people currently responsible for this failure span.- Returns:
- list of
AOTrackingUser
s responsible for this failure span
-
-