Package jetbrains.buildServer.serverSide
Interface AgentBuildHistory
-
- All Known Subinterfaces:
BuildAgentEx,SAgentType,SBuildAgent
- All Known Implementing Classes:
AbstractBuildAgent,AbstractBuildAgentContext,AgentTypeImpl,DeadAgent,DummyAgentType,MockAgentType,MockBuildAgent,RegisteredAgent,SecuredAgentType,SecuredBuildAgent,UnregisteredAgent
public interface AgentBuildHistory- Since:
- 5.1
- Author:
- Eugene Petrenko
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<SFinishedBuild>getBuildHistory(User user, boolean includeCanceled)Returns the build history of this agent.
-
-
-
Method Detail
-
getBuildHistory
@NotNull List<SFinishedBuild> getBuildHistory(@Nullable User user, boolean includeCanceled)
Returns the build history of this agent.The history can be filtered by user, as well as by cancelled builds.
- Parameters:
user- if set the result will contain only builds byuserincludeCanceled- if set the result will include canceled builds as well- Returns:
- build history
- Since:
- 5.0
-
-