Uses of Interface
com.atlassian.bamboo.chains.Chain

Packages that use Chain
com.atlassian.bamboo.build   
com.atlassian.bamboo.build.creation   
com.atlassian.bamboo.builder.coverage   
com.atlassian.bamboo.chains   
com.atlassian.bamboo.chains.cache   
com.atlassian.bamboo.chains.plugins   
com.atlassian.bamboo.index   
com.atlassian.bamboo.migration.stream   
com.atlassian.bamboo.notification.chain   
com.atlassian.bamboo.plan   
com.atlassian.bamboo.plan.artifact   
com.atlassian.bamboo.plan.branch   
com.atlassian.bamboo.plan.branch.cache   
com.atlassian.bamboo.plan.cache   
com.atlassian.bamboo.plugins.maven.dependencies   
com.atlassian.bamboo.plugins.rest.common   
com.atlassian.bamboo.ww2.actions   
com.atlassian.bamboo.ww2.actions.admin.bulk.repository   
com.atlassian.bamboo.ww2.actions.build.admin   
com.atlassian.bamboo.ww2.actions.chains   
com.atlassian.bamboo.ww2.actions.project   
com.atlassian.bamboo.ww2.aware   
 

Uses of Chain in com.atlassian.bamboo.build
 

Classes in com.atlassian.bamboo.build that implement Chain
 class BuildObjectForTests
          Deprecated. 
 class TestBuildObjectForTests
           
 

Methods in com.atlassian.bamboo.build that return Chain
 Chain ChainResultsAction.getChain()
           
 Chain BuildObjectForTests.getMaster()
          Deprecated.  
 Chain Job.getParent()
          The Chain that this Job is a member of
 Chain DefaultJob.getParent()
           
 

Methods in com.atlassian.bamboo.build with parameters of type Chain
 void ChainResultsAction.setChain(Chain chain)
           
 

Uses of Chain in com.atlassian.bamboo.build.creation
 

Methods in com.atlassian.bamboo.build.creation that return Chain
 Chain ChainCreationServiceImpl.getNewInstance()
           
 

Methods in com.atlassian.bamboo.build.creation with parameters of type Chain
 void PlanValidationService.validateNewJobForExistingChain(com.opensymphony.xwork.ValidationAware validationAware, Chain existingChain, java.lang.String buildKey, java.lang.String buildName)
           
 void PlanValidationServiceImpl.validateNewJobForExistingChain(com.opensymphony.xwork.ValidationAware validationAware, Chain existingChain, java.lang.String buildKey, java.lang.String buildName)
           
 void PlanValidationService.validateNewStageForChain(com.opensymphony.xwork.ValidationAware validationAware, Chain chain, java.lang.String stageName)
          Validate the the new stage can be added to the given chain
 void PlanValidationServiceImpl.validateNewStageForChain(com.opensymphony.xwork.ValidationAware validationAware, Chain chain, java.lang.String stageName)
           
 void PlanValidationService.validateStageExistsForChain(com.opensymphony.xwork.ValidationAware validationAware, Chain chain, java.lang.String stageName)
          Ensures that the stage currently exists for a chain
 void PlanValidationServiceImpl.validateStageExistsForChain(com.opensymphony.xwork.ValidationAware validationAware, Chain chain, java.lang.String stageName)
           
 

Uses of Chain in com.atlassian.bamboo.builder.coverage
 

Methods in com.atlassian.bamboo.builder.coverage with parameters of type Chain
 void CloverChainResultAggregator.execute(Chain chain, ChainResultsSummary chainResultsSummary, ChainExecution chainExecution)
           
 

Uses of Chain in com.atlassian.bamboo.chains
 

Classes in com.atlassian.bamboo.chains that implement Chain
 class DefaultChain
           
 

Methods in com.atlassian.bamboo.chains that return Chain
 Chain ChainDao.getByChainKey(java.lang.String fullKey)
          Gets a build chain by its key (eg BAM-FOO)
 Chain ChainDao.getByKey(Project project, java.lang.String key)
          Gets a chain by its key (eg, FOO)
 Chain ChainDao.getByName(Project project, java.lang.String name)
          Gets a chain by its name
 Chain ChainStage.getChain()
          Gets the Chain that the stage belongs to
 Chain ChainStageImpl.getChain()
           
 Chain Chain.getMaster()
           
 Chain ChainResultsSummary.getPlan()
           
 Chain ChainResultsSummaryImpl.getPlan()
           
 

Methods in com.atlassian.bamboo.chains that return types with arguments of type Chain
 java.util.List<Chain> ChainDao.getAllChains()
          Returns all of the Chain's
 

Methods in com.atlassian.bamboo.chains with parameters of type Chain
 void ChainStage.setChain(Chain chain)
          Sets the Chain that the stage belongs to
 void ChainStageImpl.setChain(Chain chain)
           
 

Constructors in com.atlassian.bamboo.chains with parameters of type Chain
ChainStageImpl(Chain chain, java.lang.String name, java.lang.String description, boolean manual)
           
 

Uses of Chain in com.atlassian.bamboo.chains.cache
 

Methods in com.atlassian.bamboo.chains.cache that return Chain
 Chain ImmutableChainStageImpl.getChain()
           
 

Methods in com.atlassian.bamboo.chains.cache with parameters of type Chain
 void ImmutableChainStageImpl.setChain(Chain chain)
           
 

Constructors in com.atlassian.bamboo.chains.cache with parameters of type Chain
ImmutableChainStageImpl(Chain chain, ChainStage chainStage, ImmutablePlanManager immutablePlanManager)
           
 

Uses of Chain in com.atlassian.bamboo.chains.plugins
 

Methods in com.atlassian.bamboo.chains.plugins with parameters of type Chain
 void PreChainAction.execute(Chain chain, ChainExecution chainExecution)
          Executes the custom action
 void PostChainAction.execute(Chain chain, ChainResultsSummary chainResultsSummary, ChainExecution chainExecution)
          Execute the custom action
 void PostChainIndexAction.execute(Chain chain, ChainResultsSummary chainResultsSummary, ChainExecution chainExecution)
           
 

Uses of Chain in com.atlassian.bamboo.index
 

Methods in com.atlassian.bamboo.index that return Chain
 Chain ChainResultsSummaryDocument.getPlan()
           
 

Uses of Chain in com.atlassian.bamboo.migration.stream
 

Classes in com.atlassian.bamboo.migration.stream with type parameters of type Chain
 class AbstractChainMapper<T extends Chain>
           
 

Methods in com.atlassian.bamboo.migration.stream that return Chain
 Chain ChainMapper.createPlanEntity()
           
 

Constructors in com.atlassian.bamboo.migration.stream with parameters of type Chain
ChainResultMapper(net.sf.hibernate.SessionFactory sessionFactory, Chain chain, BuildResultsSummaryDao buildResultsSummaryDao, BuildResultsSummaryManager buildResultsSummaryManager, java.util.Map<java.lang.Long,Label> labelMap, java.util.Map<java.lang.Long,Author> authorMap)
           
ChainStageMapper(net.sf.hibernate.SessionFactory sessionFactory, Chain chain, PlanManager planManager)
           
 

Uses of Chain in com.atlassian.bamboo.notification.chain
 

Fields in com.atlassian.bamboo.notification.chain declared as Chain
protected  Chain StageCompletedNotification.chain
           
 

Uses of Chain in com.atlassian.bamboo.plan
 

Subinterfaces of Chain in com.atlassian.bamboo.plan
 interface TopLevelPlan
          Marker interface that specifies that the implementing Plan is a 'top level' object
 

Classes in com.atlassian.bamboo.plan that implement Chain
 class AbstractChain
           
 

Fields in com.atlassian.bamboo.plan declared as Chain
protected  Chain AbstractChain.master
           
 

Methods in com.atlassian.bamboo.plan that return Chain
 Chain AbstractChain.getMaster()
           
 

Methods in com.atlassian.bamboo.plan with parameters of type Chain
static Job PlanHelper.getBranchedJob(Chain chainBranch, Job masterJob)
           
static ChainStage PlanHelper.getBranchedStage(Chain chainBranch, ChainStage masterStage)
           
 

Uses of Chain in com.atlassian.bamboo.plan.artifact
 

Methods in com.atlassian.bamboo.plan.artifact with parameters of type Chain
 ArtifactDefinition ArtifactDefinitionHibernateDao.findByNameInChain(Chain chain, java.lang.String name)
           
 ArtifactDefinition ArtifactDefinitionDao.findByNameInChain(Chain chain, java.lang.String name)
          Find artifact definition of a given name which has sharedArtifact property set to true, associated with a producer job that belongs to the chain.
 com.google.common.collect.Multimap<Job,ArtifactDefinition> ArtifactDefinitionManager.getArtifactDefinitionsByJob(Chain chain, com.google.common.base.Predicate<ArtifactDefinitionBase> predicate)
          Returns ArtifactDefinition grouped by Job where definitions are defined
 com.google.common.collect.Multimap<Job,ArtifactDefinition> ArtifactDefinitionManagerImpl.getArtifactDefinitionsByJob(Chain chain, com.google.common.base.Predicate<ArtifactDefinitionBase> predicate)
          Get ArtifactDefinition grouped by Job
 boolean ArtifactSubscriptionManager.isSubscriptionsValid(Job consumer, Chain chain, java.lang.String stageName)
          Shorter for of validateSubscriptions method
 boolean ArtifactSubscriptionManagerImpl.isSubscriptionsValid(Job consumer, Chain chain, java.lang.String stageName)
           
 java.util.List<ArtifactSubscription> ArtifactSubscriptionManager.validateSubscriptions(Job consumer, Chain chain, java.lang.String stageName)
          Validate consumer artifact subscriptions against target chain and stage
 java.util.List<ArtifactSubscription> ArtifactSubscriptionManagerImpl.validateSubscriptions(Job consumer, Chain chain, java.lang.String stageName)
           
 

Uses of Chain in com.atlassian.bamboo.plan.branch
 

Subinterfaces of Chain in com.atlassian.bamboo.plan.branch
 interface ChainBranch
          Represents a branch of a plan.
 

Classes in com.atlassian.bamboo.plan.branch that implement Chain
 class ChainBranchImpl
           
 

Methods in com.atlassian.bamboo.plan.branch that return Chain
 Chain ChainBranchImpl.getMaster()
           
 

Methods in com.atlassian.bamboo.plan.branch that return types with arguments of type Chain
 java.util.Collection<Chain> ChainStagePropagatingFacade.getChainAndBranches()
           
 

Methods in com.atlassian.bamboo.plan.branch with parameters of type Chain
static Job ChainBranchUtils.getBranchedJob(Job masterJob, Chain chain)
           
 ChainStage ChainStagePropagatingFacade.getStageForChain(Chain chain)
           
 boolean BranchDetectionService.scheduleBranchListInitialisation(Chain chain)
          Schedules initialisation of existing vcs branch list.
 boolean BranchDetectionServiceImpl.scheduleBranchListInitialisation(Chain chain)
           
 

Constructors in com.atlassian.bamboo.plan.branch with parameters of type Chain
ChainPropagatingFacade(ChainBranchManager chainBranchManager, Chain masterChain)
           
 

Uses of Chain in com.atlassian.bamboo.plan.branch.cache
 

Classes in com.atlassian.bamboo.plan.branch.cache that implement Chain
 class ImmutableChainBranchImpl
           
 

Methods in com.atlassian.bamboo.plan.branch.cache that return Chain
 Chain ImmutableChainBranchImpl.getMaster()
           
 

Uses of Chain in com.atlassian.bamboo.plan.cache
 

Classes in com.atlassian.bamboo.plan.cache that implement Chain
 class AbstractImmutableChain
           
 class ImmutableChainImpl
          A ImmutableChain implementation that also implements Chain and throws UnsupportedOperationException for mutators.
 

Methods in com.atlassian.bamboo.plan.cache that return Chain
 Chain ImmutablePlanManager.createImmutableChain(Chain chain)
           
 Chain ImmutablePlanManagerImpl.createImmutableChain(Chain chain)
           
 Chain AbstractImmutableChain.getMaster()
           
 Chain ImmutableJobImpl.getParent()
           
 Chain ImmutableResultsSummary.getPlan()
           
 Chain ImmutablePlanManager.getPlanByKey(PlanKey planKey)
           
 Chain ImmutablePlanManagerImpl.getPlanByKey(PlanKey planKey)
           
 

Methods in com.atlassian.bamboo.plan.cache with parameters of type Chain
 Chain ImmutablePlanManager.createImmutableChain(Chain chain)
           
 Chain ImmutablePlanManagerImpl.createImmutableChain(Chain chain)
           
 Job ImmutablePlanManager.createImmutableJob(Chain parent, ChainStage stage, Job job)
           
 ImmutableJobImpl ImmutablePlanManagerImpl.createImmutableJob(Chain parent, ChainStage stage, Job job)
           
 ChainStage ImmutablePlanManager.createImmutableStage(Chain parent, ChainStage stage)
          Create immutable ChainStage.
 ChainStage ImmutablePlanManagerImpl.createImmutableStage(Chain parent, ChainStage stage)
           
 

Constructors in com.atlassian.bamboo.plan.cache with parameters of type Chain
AbstractImmutableChain(Chain chain, BuildLoggerManager buildLoggerManager, ImmutablePlanManager immutablePlanManager, LabelManager labelManager, ResultsSummaryManager resultsSummaryManager, RepositoryDefinitionManager repositoryDefinitionManager, VariableDefinitionManager variableDefinitionManager, BuildDefinitionManager buildDefinitionManager)
           
ImmutableChainImpl(Chain chain, BuildLoggerManager buildLoggerManager, ImmutablePlanManager immutablePlanManager, LabelManager labelManager, ResultsSummaryManager resultsSummaryManager, RepositoryDefinitionManager repositoryDefinitionManager, VariableDefinitionManager variableDefinitionManager, BuildDefinitionManager buildDefinitionManager)
           
ImmutableJobImpl(Chain parent, ChainStage stage, Job job, ArtifactDefinitionManager artifactDefinitionManager, ArtifactSubscriptionManager artifactSubscriptionManager, BuildLoggerManager buildLoggerManager, LabelManager labelManager, VariableDefinitionManager variableDefinitionManager, TaskManager taskManager, BuildExecutionManager buildExecutionManager, ResultsSummaryManager resultsSummaryManager, BuildDefinitionManager buildDefinitionManager)
           
 

Uses of Chain in com.atlassian.bamboo.plugins.maven.dependencies
 

Methods in com.atlassian.bamboo.plugins.maven.dependencies that return types with arguments of type Chain
 java.util.List<Chain> ViewMaven2ChainSummary.getArtifactConsumers(Maven2ArtifactProperties artifactProperties)
           
 java.util.List<Chain> ViewMaven2ChainSummary.getArtifactProducers(Maven2ArtifactProperties artifactProperties)
           
 

Methods in com.atlassian.bamboo.plugins.maven.dependencies with parameters of type Chain
static Job MavenDependencyHelper.findDependencyProviderJob(Chain chain)
           
 

Uses of Chain in com.atlassian.bamboo.plugins.rest.common
 

Methods in com.atlassian.bamboo.plugins.rest.common that return Chain
static Chain RestHelper.getChainByKey(PlanManager planManager, PlanKey planKey)
          Returns a Plan if plan exists and is visible for calling user
 

Uses of Chain in com.atlassian.bamboo.ww2.actions
 

Methods in com.atlassian.bamboo.ww2.actions that return Chain
 Chain ChainAwareContextHolder.getChain()
           
 Chain ChainActionSupport.getChain()
           
 

Methods in com.atlassian.bamboo.ww2.actions with parameters of type Chain
 void ChainAwareContextHolder.setChain(Chain chain)
           
 void ChainActionSupport.setChain(Chain chain)
           
 

Uses of Chain in com.atlassian.bamboo.ww2.actions.admin.bulk.repository
 

Methods in com.atlassian.bamboo.ww2.actions.admin.bulk.repository that return Chain
 Chain UpdateWebUrlBulkAction.getMockBuildForView(java.util.Map<java.lang.String,java.lang.String[]> params)
           
 

Uses of Chain in com.atlassian.bamboo.ww2.actions.build.admin
 

Methods in com.atlassian.bamboo.ww2.actions.build.admin that return types with arguments of type Chain
 java.util.List<Chain> DeleteBuilds.getBuildsToConfirm()
           
 

Uses of Chain in com.atlassian.bamboo.ww2.actions.chains
 

Methods in com.atlassian.bamboo.ww2.actions.chains that return types with arguments of type Chain
 java.util.Collection<Chain> CreateJob.getChainsToClone()
           
 

Uses of Chain in com.atlassian.bamboo.ww2.actions.project
 

Methods in com.atlassian.bamboo.ww2.actions.project that return types with arguments of type Chain
 java.util.Collection<Chain> ViewProject.getProjectChains()
           
 

Uses of Chain in com.atlassian.bamboo.ww2.aware
 

Methods in com.atlassian.bamboo.ww2.aware that return Chain
 Chain ChainAware.getChain()
           
 

Methods in com.atlassian.bamboo.ww2.aware with parameters of type Chain
 void ChainAware.setChain(Chain chain)
           
 



Copyright © 2012 Atlassian. All Rights Reserved.