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.intgetID()longThe plan the failures belong toAll the results that are part of this failure span.booleanisActive()Whether the current failing span is active.voidsetActive(boolean active) voidsetPlanId(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
AOTrackingResults in this Tracking Entry
-
getCurrentResponsibilities
AOTrackingUser[] getCurrentResponsibilities()All the people currently responsible for this failure span.- Returns:
- list of
AOTrackingUsers responsible for this failure span
-