Class BuildResultsBean
- java.lang.Object
-
- jetbrains.buildServer.controllers.viewLog.BuildResultsBean
-
public class BuildResultsBean extends Object
- Author:
- Maxim Podkolzine (maxim.podkolzine@jetbrains.com)
-
-
Constructor Summary
Constructors Constructor Description BuildResultsBean(SBuild build, SUser user, BuildChainFactory buildChainFactory, BuildStatisticsPrinterFactory buildStatisticsPrinterFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SBuild
getBuild()
BuildStatistics
getBuildStatistics()
DependenciesInfo
getDependenciesBean()
ProjectBuildProblemsBean
getDependenciesProblemsBean()
DeploymentsInfo
getDeploymentsBean()
GroupedTestsBean
getIgnoredGroup()
int
getNumberOfNonTestRelatedProblems()
BuildProblemsBean
getOwnBuildProblemsBean()
String
getStatusText()
int
getTotalNumberOfProblems()
boolean
isHasProblemsFromDependencies()
-
-
-
Constructor Detail
-
BuildResultsBean
public BuildResultsBean(@NotNull SBuild build, @NotNull SUser user, @NotNull BuildChainFactory buildChainFactory, @NotNull BuildStatisticsPrinterFactory buildStatisticsPrinterFactory)
-
-
Method Detail
-
isHasProblemsFromDependencies
public boolean isHasProblemsFromDependencies()
-
getNumberOfNonTestRelatedProblems
public int getNumberOfNonTestRelatedProblems()
-
getTotalNumberOfProblems
public int getTotalNumberOfProblems()
-
getBuildStatistics
@NotNull public BuildStatistics getBuildStatistics()
-
getDependenciesBean
@NotNull public DependenciesInfo getDependenciesBean()
-
getDeploymentsBean
@NotNull public DeploymentsInfo getDeploymentsBean()
-
getIgnoredGroup
@Nullable public GroupedTestsBean getIgnoredGroup()
-
getDependenciesProblemsBean
@Nullable public ProjectBuildProblemsBean getDependenciesProblemsBean()
-
getOwnBuildProblemsBean
@NotNull public BuildProblemsBean getOwnBuildProblemsBean()
-
getBuild
@NotNull public SBuild getBuild()
-
getStatusText
@NotNull public String getStatusText()
-
-