Interface AOTrackingEntry
- All Superinterfaces:
net.java.ao.RawEntity<Integer>
Represents a span of failing results for a single plan
-
Method Summary
Modifier and TypeMethodDescriptionAll the people currently responsible for this failure span.int
getID()
long
The plan the failures belong toAll 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) Methods inherited from interface net.java.ao.RawEntity
addPropertyChangeListener, getEntityManager, getEntityType, init, removePropertyChangeListener, save
-
Method Details
-
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
-