Class StageProperties
- java.lang.Object
-
- com.atlassian.bamboo.specs.api.model.plan.StageProperties
-
- All Implemented Interfaces:
EntityProperties
@Immutable public final class StageProperties extends Object implements EntityProperties
-
-
Constructor Summary
Constructors Constructor Description StageProperties(String name, String description, boolean manualStage, boolean finalStage, List<JobProperties> jobs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)@Nullable StringgetDescription()@NotNull List<JobProperties>getJobs()@NotNull StringgetName()inthashCode()booleanisFinalStage()booleanisManual()voidvalidate()
-
-
-
Constructor Detail
-
StageProperties
public StageProperties(String name, String description, boolean manualStage, boolean finalStage, List<JobProperties> jobs) throws PropertiesValidationException
- Throws:
PropertiesValidationException
-
-
Method Detail
-
getName
@NotNull public @NotNull String getName()
-
getDescription
@Nullable public @Nullable String getDescription()
-
isManual
public boolean isManual()
-
isFinalStage
public boolean isFinalStage()
-
getJobs
@NotNull public @NotNull List<JobProperties> getJobs()
-
validate
public void validate()
- Specified by:
validatein interfaceEntityProperties
-
-