Package com.atlassian.bamboo.agent
Interface AgentExecutableService
-
- All Known Implementing Classes:
AgentExecutableServiceImpl
public interface AgentExecutableService
Service to get environments and jobs executable for an agent.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull List<ImmutableBuildable>
fetchExecutableBuildables(PipelineDefinition agent)
Fetch deployment jobs that can be executed by the given agent.@NotNull List<DecoratedEnvironment>
fetchExecutableEnvironments(PipelineDefinition agent)
Fetch deployment environments that can be executed by the given agent.
-
-
-
Method Detail
-
fetchExecutableBuildables
@NotNull @NotNull List<ImmutableBuildable> fetchExecutableBuildables(PipelineDefinition agent)
Fetch deployment jobs that can be executed by the given agent.
-
fetchExecutableEnvironments
@NotNull @NotNull List<DecoratedEnvironment> fetchExecutableEnvironments(PipelineDefinition agent)
Fetch deployment environments that can be executed by the given agent.
-
-