Package jetbrains.buildServer.serverSide
Interface SBuildStepsCollection
-
- All Known Implementing Classes:
BuildStartContextBase
,BuildStartContextImpl
,BuildStartStepContextImpl
,SBuildStepsCollectionImpl
public interface SBuildStepsCollection
Represents collection of build steps of a build- Since:
- 8.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<? extends SBuildStepDescriptor>
getBuildRunners()
Collection<? extends SBuildStepDescriptor>
getEnabledBuildRunners()
Collection<InvalidProperty>
getInvalidProperties()
-
-
-
Method Detail
-
getBuildRunners
@NotNull Collection<? extends SBuildStepDescriptor> getBuildRunners()
- Returns:
- all build steps for a build configuration
- Since:
- 8.0
-
getEnabledBuildRunners
@NotNull Collection<? extends SBuildStepDescriptor> getEnabledBuildRunners()
- Returns:
- all enabled build steps for a build configuration
- Since:
- 8.0
-
getInvalidProperties
@NotNull Collection<InvalidProperty> getInvalidProperties()
- Returns:
- invalid properties collection for all enabled build steps
- Since:
- 8.0
-
-