Class ChangeStatusesCache
- java.lang.Object
-
- jetbrains.buildServer.controllers.changes.ChangeStatusesCache
-
public class ChangeStatusesCache extends Object
This class is used to keep current state of each change to be shown on the Changes page The status is kept on per-project basis so far. We keep status "is problem critical", i.e. it has new failed tests or compilation problems. We also keep status text (like "4 tests failed, 3 new"). The status text is set from JSP page, when change details are shown- Author:
- kir
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ChangeStatusesCache
getStatusCache(javax.servlet.http.HttpServletRequest request, String projectInternalId)
OneChangeStatus
getStatusFor(SVcsModification modification)
boolean
hasCacheFor(SVcsModification change)
-
-
-
Method Detail
-
getStatusCache
public static ChangeStatusesCache getStatusCache(javax.servlet.http.HttpServletRequest request, String projectInternalId)
-
getStatusFor
public OneChangeStatus getStatusFor(SVcsModification modification)
-
hasCacheFor
public boolean hasCacheFor(SVcsModification change)
-
-