@PublicApi
public interface TaskRequirementSupport
TaskType
s to specify Requirement
s.
There are three interfaces which you can use for this purpose
TaskRequirementSupport
: Preferred option. Will work for both deployment environment and for jobs (you can not implement the other interfaces if using this)
BuildTaskRequirementSupport
: Supports Jobs only. Only use if you require the job information to generate your task's requirements (can be used in conjunction with DeploymentTaskRequirementSupport)
com.atlassian.bamboo.deployments.environments.DeploymentTaskRequirementSupport: Supports Environments only. Only use if you require the environment information to generate your task's requirements (can be used in conjunction with BuildTaskRequirementSupport)Modifier and Type | Method and Description |
---|---|
Set<Requirement> |
calculateRequirements(TaskDefinition taskDefinition)
Populates the
RequirementSet needed based off of the TaskDefinition |
@NotNull Set<Requirement> calculateRequirements(@NotNull TaskDefinition taskDefinition)
RequirementSet
needed based off of the TaskDefinition
taskDefinition
- Copyright © 2021 Atlassian Software Systems Pty Ltd. All rights reserved.