Class InternalEnvironmentImpl
- java.lang.Object
-
- com.atlassian.bamboo.deployments.environments.persistence.internal.InternalEnvironmentImpl
-
- All Implemented Interfaces:
BambooIdProvider,InternalEnvironment,TaskContainer,Triggerable,DescriptionProvider,NameProvider
- Direct Known Subclasses:
InternalEnvironmentStubImpl
@Internal public class InternalEnvironmentImpl extends Object implements InternalEnvironment
Minimal, user context agnostic, but fully functional implementation ofInternalEnvironment, used when processing deployment environments en masse.
-
-
Constructor Summary
Constructors Modifier Constructor Description InternalEnvironmentImpl(long id, long deploymentProjectId, String name, String description, String tasksXmlData, String triggersXmlData, int position, ConfigurationState configurationState, long requirementSetId, ReleaseApprovalPrerequisite releaseApprovalPrerequisite)protectedInternalEnvironmentImpl(@NotNull InternalEnvironment other)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfigurationStategetConfigurationState()longgetDeploymentProjectId()@Nullable StringgetDescription()longgetId()@NotNull DeploymentKeygetKey()Key representing this environment.@NotNull StringgetName()intgetPosition()@NotNull ReleaseApprovalPrerequisitegetReleaseApprovalPrerequisite()@NotNull ImmutableRequirementSetgetRequirementSet()Return effective value ofImmutableRequirementSet, that is value that is considered when checking which agents and elastic images can deploy to this environment.@NotNull Supplier<ImmutableRequirementSet>getRequirementSetSupplier()Return (possibly lazy) supplier of the requirement set.@NotNull List<TaskDefinition>getTaskDefinitions()@NotNull Supplier<List<TaskDefinition>>getTaskDefinitionsSupplier()Return (possibly lazy) supplier of tasks.@NotNull List<TriggerDefinition>getTriggerDefinitions()@NotNull Supplier<List<TriggerDefinition>>getTriggerDefinitionsSupplier()Return (possibly lazy) supplier of triggers.booleanisSuspended()
-
-
-
Constructor Detail
-
InternalEnvironmentImpl
public InternalEnvironmentImpl(long id, long deploymentProjectId, String name, String description, String tasksXmlData, String triggersXmlData, int position, ConfigurationState configurationState, long requirementSetId, ReleaseApprovalPrerequisite releaseApprovalPrerequisite)
-
InternalEnvironmentImpl
protected InternalEnvironmentImpl(@NotNull @NotNull InternalEnvironment other)
-
-
Method Detail
-
getTaskDefinitions
@NotNull public @NotNull List<TaskDefinition> getTaskDefinitions()
- Specified by:
getTaskDefinitionsin interfaceTaskContainer- Returns:
- an ordered list of taskDefinitions for this container.
-
isSuspended
public boolean isSuspended()
- Specified by:
isSuspendedin interfaceTriggerable- Returns:
- true if automatic triggering is switched off for this object
-
getTriggerDefinitions
@NotNull public @NotNull List<TriggerDefinition> getTriggerDefinitions()
- Specified by:
getTriggerDefinitionsin interfaceTriggerable- Returns:
- immutable list of all triggers defined for this object
-
getId
public long getId()
- Specified by:
getIdin interfaceBambooIdProvider- Specified by:
getIdin interfaceInternalEnvironment- Returns:
- unique identifier (in this case from database)
-
getKey
@NotNull public @NotNull DeploymentKey getKey()
Description copied from interface:InternalEnvironmentKey representing this environment. Keys have much less significance in deployments than in plans. Please consider usingInternalEnvironment.getId()instead.- Specified by:
getKeyin interfaceInternalEnvironment- Returns:
- key of this environment.
-
getName
@NotNull public @NotNull String getName()
- Specified by:
getNamein interfaceDescriptionProvider- Specified by:
getNamein interfaceInternalEnvironment- Specified by:
getNamein interfaceNameProvider- Returns:
- User friendly shortish name for this environment. Must be unique within a deployment project
-
getDescription
@Nullable public @Nullable String getDescription()
- Specified by:
getDescriptionin interfaceDescriptionProvider- Specified by:
getDescriptionin interfaceInternalEnvironment- Returns:
- Optional, longer description of the environment
-
getDeploymentProjectId
public long getDeploymentProjectId()
- Specified by:
getDeploymentProjectIdin interfaceInternalEnvironment- Returns:
- id of the
DeploymentProjectwhich is owner of this environment
-
getConfigurationState
public ConfigurationState getConfigurationState()
- Specified by:
getConfigurationStatein interfaceInternalEnvironment- Returns:
- Enum representing how completed the configuration of this environments is.
-
getPosition
public int getPosition()
- Specified by:
getPositionin interfaceInternalEnvironment- Returns:
- position of this environment in deployment project's environment list.
-
getRequirementSet
@NotNull public @NotNull ImmutableRequirementSet getRequirementSet()
Description copied from interface:InternalEnvironmentReturn effective value ofImmutableRequirementSet, that is value that is considered when checking which agents and elastic images can deploy to this environment.- Specified by:
getRequirementSetin interfaceInternalEnvironment
-
getTaskDefinitionsSupplier
@NotNull public @NotNull Supplier<List<TaskDefinition>> getTaskDefinitionsSupplier()
Description copied from interface:InternalEnvironmentReturn (possibly lazy) supplier of tasks.- Specified by:
getTaskDefinitionsSupplierin interfaceInternalEnvironment
-
getTriggerDefinitionsSupplier
@NotNull public @NotNull Supplier<List<TriggerDefinition>> getTriggerDefinitionsSupplier()
Description copied from interface:InternalEnvironmentReturn (possibly lazy) supplier of triggers.- Specified by:
getTriggerDefinitionsSupplierin interfaceInternalEnvironment
-
getRequirementSetSupplier
@NotNull public @NotNull Supplier<ImmutableRequirementSet> getRequirementSetSupplier()
Description copied from interface:InternalEnvironmentReturn (possibly lazy) supplier of the requirement set.- Specified by:
getRequirementSetSupplierin interfaceInternalEnvironment
-
getReleaseApprovalPrerequisite
@NotNull public @NotNull ReleaseApprovalPrerequisite getReleaseApprovalPrerequisite()
- Specified by:
getReleaseApprovalPrerequisitein interfaceInternalEnvironment
-
-