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
Minimal, user context agnostic, but fully functional implementation of
InternalEnvironment
, used when processing deployment environments en masse.-
Constructor Summary
ModifierConstructorDescriptionInternalEnvironmentImpl
(long id, long deploymentProjectId, String name, String description, String tasksXmlData, String triggersXmlData, int position, ConfigurationState configurationState, long requirementSetId, ReleaseApprovalPrerequisite releaseApprovalPrerequisite) protected
InternalEnvironmentImpl
(@NotNull InternalEnvironment other) -
Method Summary
Modifier and TypeMethodDescriptionlong
@Nullable String
long
getId()
@NotNull DeploymentKey
getKey()
Key representing this environment.@NotNull String
getName()
int
@NotNull ReleaseApprovalPrerequisite
@NotNull ImmutableRequirementSet
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>
Return (possibly lazy) supplier of the requirement set.@NotNull List<TaskDefinition>
@NotNull Supplier<List<TaskDefinition>>
Return (possibly lazy) supplier of tasks.@NotNull List<TriggerDefinition>
@NotNull Supplier<List<TriggerDefinition>>
Return (possibly lazy) supplier of triggers.boolean
-
Constructor Details
-
InternalEnvironmentImpl
public InternalEnvironmentImpl(long id, long deploymentProjectId, String name, String description, String tasksXmlData, String triggersXmlData, int position, ConfigurationState configurationState, long requirementSetId, ReleaseApprovalPrerequisite releaseApprovalPrerequisite) -
InternalEnvironmentImpl
-
-
Method Details
-
getTaskDefinitions
- Specified by:
getTaskDefinitions
in interfaceTaskContainer
- Returns:
- an ordered list of taskDefinitions for this container.
-
isSuspended
public boolean isSuspended()- Specified by:
isSuspended
in interfaceTriggerable
- Returns:
- true if automatic triggering is switched off for this object
-
getTriggerDefinitions
- Specified by:
getTriggerDefinitions
in interfaceTriggerable
- Returns:
- immutable list of all triggers defined for this object
-
getId
public long getId()- Specified by:
getId
in interfaceBambooIdProvider
- Specified by:
getId
in interfaceInternalEnvironment
- Returns:
- unique identifier (in this case from database)
-
getKey
Description copied from interface:InternalEnvironment
Key representing this environment. Keys have much less significance in deployments than in plans. Please consider usingInternalEnvironment.getId()
instead.- Specified by:
getKey
in interfaceInternalEnvironment
- Returns:
- key of this environment.
-
getName
- Specified by:
getName
in interfaceDescriptionProvider
- Specified by:
getName
in interfaceInternalEnvironment
- Specified by:
getName
in interfaceNameProvider
- Returns:
- User friendly shortish name for this environment. Must be unique within a deployment project
-
getDescription
- Specified by:
getDescription
in interfaceDescriptionProvider
- Specified by:
getDescription
in interfaceInternalEnvironment
- Returns:
- Optional, longer description of the environment
-
getDeploymentProjectId
public long getDeploymentProjectId()- Specified by:
getDeploymentProjectId
in interfaceInternalEnvironment
- Returns:
- id of the
DeploymentProject
which is owner of this environment
-
getConfigurationState
- Specified by:
getConfigurationState
in interfaceInternalEnvironment
- Returns:
- Enum representing how completed the configuration of this environments is.
-
getPosition
public int getPosition()- Specified by:
getPosition
in interfaceInternalEnvironment
- Returns:
- position of this environment in deployment project's environment list.
-
getRequirementSet
Description copied from interface:InternalEnvironment
Return effective value ofImmutableRequirementSet
, that is value that is considered when checking which agents and elastic images can deploy to this environment.- Specified by:
getRequirementSet
in interfaceInternalEnvironment
-
getTaskDefinitionsSupplier
Description copied from interface:InternalEnvironment
Return (possibly lazy) supplier of tasks.- Specified by:
getTaskDefinitionsSupplier
in interfaceInternalEnvironment
-
getTriggerDefinitionsSupplier
Description copied from interface:InternalEnvironment
Return (possibly lazy) supplier of triggers.- Specified by:
getTriggerDefinitionsSupplier
in interfaceInternalEnvironment
-
getRequirementSetSupplier
Description copied from interface:InternalEnvironment
Return (possibly lazy) supplier of the requirement set.- Specified by:
getRequirementSetSupplier
in interfaceInternalEnvironment
-
getReleaseApprovalPrerequisite
- Specified by:
getReleaseApprovalPrerequisite
in interfaceInternalEnvironment
-