Package com.atlassian.bamboo.plan.cache
Class ChainResultDetailsImpl
- java.lang.Object
-
- com.atlassian.bamboo.plan.cache.ChainResultDetailsImpl
-
- All Implemented Interfaces:
ChainResultDetails
public class ChainResultDetailsImpl extends Object implements ChainResultDetails
- Since:
- v3.4
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @NotNull List<BuildResultsSummary>getFailedJobResults()Returns all Job results that failed.@NotNull List<ResultsSummary>getOrderedJobResultSummaries()Returns job results ordered by stage and then plan names@NotNull List<ChainStageResult>getStageResults()Returns all stage results.FilteredTestResults<TestClassResultDescriptor>getTestResults()Get the helper class to provide filtered test lists for this chain resultintgetTotalJobCount()Total number of job results.
-
-
-
Method Detail
-
getStageResults
@NotNull public @NotNull List<ChainStageResult> getStageResults()
Description copied from interface:ChainResultDetailsReturns all stage results.- Specified by:
getStageResultsin interfaceChainResultDetails- Returns:
-
getFailedJobResults
@NotNull public @NotNull List<BuildResultsSummary> getFailedJobResults()
Description copied from interface:ChainResultDetailsReturns all Job results that failed. Doesn't include incpmplete jobs- Specified by:
getFailedJobResultsin interfaceChainResultDetails- Returns:
-
getTotalJobCount
public int getTotalJobCount()
Description copied from interface:ChainResultDetailsTotal number of job results. Include incomplete + unbuilt jobs- Specified by:
getTotalJobCountin interfaceChainResultDetails- Returns:
-
getOrderedJobResultSummaries
@NotNull public @NotNull List<ResultsSummary> getOrderedJobResultSummaries()
Description copied from interface:ChainResultDetailsReturns job results ordered by stage and then plan names- Specified by:
getOrderedJobResultSummariesin interfaceChainResultDetails- Returns:
-
getTestResults
public FilteredTestResults<TestClassResultDescriptor> getTestResults()
Description copied from interface:ChainResultDetailsGet the helper class to provide filtered test lists for this chain result- Specified by:
getTestResultsin interfaceChainResultDetails- Returns:
- helper class to provide filtered test lists for this chain result, null if the chain is still being built
-
-