Uses of Interface
com.atlassian.bamboo.deployments.environments.persistence.MutableEnvironment
-
-
Uses of MutableEnvironment in com.atlassian.bamboo.deployments
Methods in com.atlassian.bamboo.deployments that return MutableEnvironment Modifier and Type Method Description static MutableEnvironment
DeploymentMocks. mockMutableEnvironment(long id, @NotNull String key)
-
Uses of MutableEnvironment in com.atlassian.bamboo.deployments.configuration.persistence
Methods in com.atlassian.bamboo.deployments.configuration.persistence that return MutableEnvironment Modifier and Type Method Description @Nullable MutableEnvironment
EnvironmentCustomConfig. getEnvironment()
@Nullable MutableEnvironment
EnvironmentCustomConfigImpl. getEnvironment()
Methods in com.atlassian.bamboo.deployments.configuration.persistence with parameters of type MutableEnvironment Modifier and Type Method Description void
EnvironmentCustomConfig. setEnvironment(@NotNull MutableEnvironment environment)
void
EnvironmentCustomConfigImpl. setEnvironment(@NotNull MutableEnvironment environment)
-
Uses of MutableEnvironment in com.atlassian.bamboo.deployments.environments
Methods in com.atlassian.bamboo.deployments.environments with parameters of type MutableEnvironment Modifier and Type Method Description static EnvironmentImpl
EnvironmentImpl. environmentWithBasicData(MutableEnvironment env, Operations operations)
Constructors in com.atlassian.bamboo.deployments.environments with parameters of type MutableEnvironment Constructor Description EnvironmentImpl(MutableEnvironment mutableEnvironment)
-
Uses of MutableEnvironment in com.atlassian.bamboo.deployments.environments.migration.stream
Methods in com.atlassian.bamboo.deployments.environments.migration.stream that return MutableEnvironment Modifier and Type Method Description protected @NotNull MutableEnvironment
EnvironmentMapper. createItemInstance(org.codehaus.staxmate.in.SMInputCursor inputCursor)
protected @NotNull MutableEnvironment
EnvironmentPropertiesMapper. createItemInstance(org.codehaus.staxmate.in.SMInputCursor inputCursor)
Methods in com.atlassian.bamboo.deployments.environments.migration.stream with parameters of type MutableEnvironment Modifier and Type Method Description void
EnvironmentMapper. afterImportListItem(@NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor, @NotNull List<MutableEnvironment> list, @NotNull MutableEnvironment object, long objectIndex, @NotNull org.hibernate.Session session)
protected void
EnvironmentMapper. exportProperties(@NotNull org.codehaus.staxmate.out.SMOutputElement outputElement, @NotNull MutableEnvironment environment, @NotNull org.hibernate.Session session, ExportDetailsBean exportDetailsBean)
protected void
EnvironmentPropertiesMapper. exportProperties(@NotNull org.codehaus.staxmate.out.SMOutputElement outputElement, @NotNull MutableEnvironment environment, @NotNull org.hibernate.Session session, ExportDetailsBean exportDetailsBean)
protected void
EnvironmentMapper. importProperties(@NotNull MutableEnvironment ignored, @NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor, @NotNull org.hibernate.Session session)
protected void
EnvironmentPropertiesMapper. importProperties(@NotNull MutableEnvironment environment, @NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor, @NotNull org.hibernate.Session session)
Method parameters in com.atlassian.bamboo.deployments.environments.migration.stream with type arguments of type MutableEnvironment Modifier and Type Method Description void
EnvironmentMapper. afterImportListItem(@NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor, @NotNull List<MutableEnvironment> list, @NotNull MutableEnvironment object, long objectIndex, @NotNull org.hibernate.Session session)
-
Uses of MutableEnvironment in com.atlassian.bamboo.deployments.environments.persistence
Classes in com.atlassian.bamboo.deployments.environments.persistence that implement MutableEnvironment Modifier and Type Class Description class
MutableEnvironmentImpl
Methods in com.atlassian.bamboo.deployments.environments.persistence with type parameters of type MutableEnvironment Modifier and Type Method Description <E extends MutableEnvironment>
voidEnvironmentDao. saveAll(@NotNull Collection<E> environments)
Save all items on the list;Methods in com.atlassian.bamboo.deployments.environments.persistence that return MutableEnvironment Modifier and Type Method Description @NotNull MutableEnvironment
EnvironmentDao. createNewEnvironmentInstance()
@NotNull MutableEnvironment
EnvironmentDaoImpl. createNewEnvironmentInstance()
@Nullable MutableEnvironment
EnvironmentDao. findEnvironmentByName(long deploymentProjectId, String name)
Find environment with specified name in a deployment project@Nullable MutableEnvironment
EnvironmentDaoImpl. findEnvironmentByName(long deploymentProjectId, String name)
@Nullable MutableEnvironment
EnvironmentDao. getEnvironment(long environmentId)
Gets specific Environment by ID@Nullable MutableEnvironment
EnvironmentDao. getEnvironment(@NotNull DeploymentKey environmentKey)
Gets specific Environment by key@Nullable MutableEnvironment
EnvironmentDaoImpl. getEnvironment(long environmentId)
@Nullable MutableEnvironment
EnvironmentDaoImpl. getEnvironment(@NotNull DeploymentKey environmentKey)
Methods in com.atlassian.bamboo.deployments.environments.persistence that return types with arguments of type MutableEnvironment Modifier and Type Method Description List<MutableEnvironment>
EnvironmentDao. findAll()
@NotNull List<? extends MutableEnvironment>
EnvironmentDao. findAll(int firstResult, int pageSize)
List<MutableEnvironment>
EnvironmentDaoImpl. findAll()
List<? extends MutableEnvironment>
EnvironmentDaoImpl. findAll(int firstResult, int maxResults)
@NotNull List<MutableEnvironment>
EnvironmentDao. findAllByIds(Collection<Long> ids)
Returns a list of Environments which id values are in the ids collectionList<MutableEnvironment>
EnvironmentDaoImpl. findAllByIds(Collection<Long> ids)
@NotNull List<Pair<Requirement,MutableEnvironment>>
EnvironmentDao. findEnvironmentsByRequirementKey(@NotNull String requirementKey)
Get requirements to environment mapping by requirement key.@NotNull List<Pair<Requirement,MutableEnvironment>>
EnvironmentDaoImpl. findEnvironmentsByRequirementKey(@NotNull String requirementKey)
@NotNull List<MutableEnvironment>
EnvironmentDao. getEnvironmentsForDeploymentProject(long deploymentProjectId)
Retrieve all environments for a Deployment Project@NotNull List<MutableEnvironment>
EnvironmentDaoImpl. getEnvironmentsForDeploymentProject(long deploymentProjectId)
Optional<MutableEnvironment>
EnvironmentDao. getNextEnvironment(long deploymentProjectId, int position)
Optional<MutableEnvironment>
EnvironmentDaoImpl. getNextEnvironment(long deploymentProjectId, int position)
@NotNull List<MutableEnvironment>
EnvironmentDao. getPaginatedEnvironmentsForDeploymentProject(long deploymentProjectId, int start, int limit, String filter)
Retrieve part of environments for a Deployment Project ordered by position@NotNull List<MutableEnvironment>
EnvironmentDaoImpl. getPaginatedEnvironmentsForDeploymentProject(long deploymentProjectId, int start, int limit, String filter)
Optional<MutableEnvironment>
EnvironmentDao. getPreviousEnvironment(long deploymentProjectId, int position)
Optional<MutableEnvironment>
EnvironmentDaoImpl. getPreviousEnvironment(long deploymentProjectId, int position)
Methods in com.atlassian.bamboo.deployments.environments.persistence with parameters of type MutableEnvironment Modifier and Type Method Description void
EnvironmentDao. delete(@NotNull MutableEnvironment environment)
Delete a specific Deployment Environment.void
EnvironmentDaoImpl. delete(@NotNull MutableEnvironment environment)
void
EnvironmentDao. save(@NotNull MutableEnvironment environment)
Save a new or existing environment.void
EnvironmentDaoImpl. save(@NotNull MutableEnvironment environment)
static void
EnvironmentPersistenceHelper. saveEnvironmentWithNoSchedules(@NotNull MutableEnvironment environment, @NotNull EnvironmentDao environmentDao, @NotNull PlanScheduler planScheduler)
Helper method that persist environment configuration, while pausing its triggers.static void
EnvironmentPersistenceHelper. saveEnvironmentWithNoSchedules(@NotNull MutableEnvironment environment, @Nullable BuildConfiguration newTriggersConfiguration, @NotNull EnvironmentDao environmentDao, @NotNull PlanScheduler planScheduler)
Helper method that persist environment configuration, while pausing its triggers. -
Uses of MutableEnvironment in com.atlassian.bamboo.deployments.environments.service
Methods in com.atlassian.bamboo.deployments.environments.service with parameters of type MutableEnvironment Modifier and Type Method Description @NotNull Environment
EnvironmentService. createImmutableEnvironment(@NotNull MutableEnvironment environment)
Converts mutable environment to immutable.@NotNull Environment
EnvironmentServiceImpl. createImmutableEnvironment(@NotNull MutableEnvironment mutableEnvironment)
@NotNull Environment
EnvironmentService. createOperationsAwareImmutableEnvironment(@NotNull MutableEnvironment environment)
Create operation aware immutable environment@NotNull Environment
EnvironmentServiceImpl. createOperationsAwareImmutableEnvironment(@NotNull MutableEnvironment environment)
-
Uses of MutableEnvironment in com.atlassian.bamboo.deployments.projects.migration
Methods in com.atlassian.bamboo.deployments.projects.migration that return MutableEnvironment Modifier and Type Method Description MutableEnvironment
DeploymentsImportContext. getEnvironment()
Methods in com.atlassian.bamboo.deployments.projects.migration with parameters of type MutableEnvironment Modifier and Type Method Description void
DeploymentsImportContext. setEnvironment(MutableEnvironment environment)
-
Uses of MutableEnvironment in com.atlassian.bamboo.deployments.projects.persistence
Methods in com.atlassian.bamboo.deployments.projects.persistence that return types with arguments of type MutableEnvironment Modifier and Type Method Description List<Pair<MutableDeploymentProject,MutableEnvironment>>
DeploymentProjectDao. getPaginatedDeploymentsWithEnvironments(int start, int limit, String filter)
Deprecated.List<Pair<MutableDeploymentProject,MutableEnvironment>>
DeploymentProjectDaoImpl. getPaginatedDeploymentsWithEnvironments(int start, int limit, String filter)
-
Uses of MutableEnvironment in com.atlassian.bamboo.deployments.repository
Constructors in com.atlassian.bamboo.deployments.repository with parameters of type MutableEnvironment Constructor Description EnvironmentRepositoryLinkImpl(@NotNull MutableEnvironment environment, @NotNull RepositoryDataEntity repositoryDataEntity, int position)
-
Uses of MutableEnvironment in com.atlassian.bamboo.deployments.repository.persistence
Methods in com.atlassian.bamboo.deployments.repository.persistence that return types with arguments of type MutableEnvironment Modifier and Type Method Description @NotNull List<MutableEnvironment>
EnvironmentRepositoryLinkDao. getEnvironmentsUsingRepository(long repositoryId)
@NotNull List<MutableEnvironment>
EnvironmentRepositoryLinkHibernateDao. getEnvironmentsUsingRepository(long repositoryId)
Methods in com.atlassian.bamboo.deployments.repository.persistence with parameters of type MutableEnvironment Modifier and Type Method Description EnvironmentRepositoryLink
EnvironmentRepositoryLinkDao. linkRepositoryToEnvironment(MutableEnvironment environment, RepositoryDataEntity repositoryDataEntity, int index)
Creates and saves connection between repository and and a deployment environment.EnvironmentRepositoryLink
EnvironmentRepositoryLinkHibernateDao. linkRepositoryToEnvironment(MutableEnvironment environment, RepositoryDataEntity repositoryDataEntity, int index)
-
Uses of MutableEnvironment in com.atlassian.bamboo.deployments.results.persistence
Methods in com.atlassian.bamboo.deployments.results.persistence with parameters of type MutableEnvironment Modifier and Type Method Description void
MutableDeploymentResultImpl. setEnvironment(MutableEnvironment environment)
-