Uses of Interface
com.atlassian.bamboo.chains.cache.ImmutableChainStage

Packages that use ImmutableChainStage
com.atlassian.bamboo.build   
com.atlassian.bamboo.chains   
com.atlassian.bamboo.chains.cache   
com.atlassian.bamboo.index   
com.atlassian.bamboo.plan   
com.atlassian.bamboo.plan.artifact   
com.atlassian.bamboo.plan.cache   
com.atlassian.bamboo.ww2.actions   
com.atlassian.bamboo.ww2.aware   
com.atlassian.bamboo.ww2.beans   
 

Uses of ImmutableChainStage in com.atlassian.bamboo.build
 

Methods in com.atlassian.bamboo.build that return ImmutableChainStage
 ImmutableChainStage ChainResultsAction.getImmutableChainStage()
           
 

Methods in com.atlassian.bamboo.build with parameters of type ImmutableChainStage
 void ChainResultsAction.setChainStage(ImmutableChainStage chainStage)
           
 

Uses of ImmutableChainStage in com.atlassian.bamboo.chains
 

Subinterfaces of ImmutableChainStage in com.atlassian.bamboo.chains
 interface ChainStage
           
 

Classes in com.atlassian.bamboo.chains that implement ImmutableChainStage
 class ChainStageImpl
           
 

Methods in com.atlassian.bamboo.chains that return ImmutableChainStage
 ImmutableChainStage ChainStageImpl.getMaster()
           
 

Methods in com.atlassian.bamboo.chains that return types with arguments of type ImmutableChainStage
 java.util.Map<ImmutableChainStage,java.util.Map<ImmutableJob,BuildContext>> BuildContextFactory.createBuildContextsForJobs(ImmutableChain chain, BuildContext parentBuildContext)
          Creates a BuildContext for each Job in the Chain
 java.util.Map<ImmutableChainStage,java.util.Map<ImmutableJob,BuildContext>> BuildContextFactoryImpl.createBuildContextsForJobs(ImmutableChain chain, BuildContext parentBuildContext)
           
static com.google.common.base.Predicate<ImmutableChainStage> ChainStagePredicates.isManual()
          Get a predicate that returns true for Manual Stages.
 

Methods in com.atlassian.bamboo.chains with parameters of type ImmutableChainStage
 ChainStageResult ChainResultsSummary.createStageResult(ImmutableChainStage chainStage)
          Create a new ChainStageResult and associates it with the ChainResultsSummary
 ChainStageResult ChainResultsSummaryImpl.createStageResult(ImmutableChainStage chainStage)
           
 

Method parameters in com.atlassian.bamboo.chains with type arguments of type ImmutableChainStage
 ChainStateResult ChainResultManager.create(BuildContext chainBuildContext, java.util.Map<ImmutableChainStage,java.util.Map<ImmutableJob,BuildContext>> jobBuildContexts, java.util.Collection<? extends ImmutableChainStage> stageToExecute)
          Creates a ChainState from Chain and BuildContext and reports any errors
 ChainStateResult ChainResultManager.create(BuildContext chainBuildContext, java.util.Map<ImmutableChainStage,java.util.Map<ImmutableJob,BuildContext>> jobBuildContexts, java.util.Collection<? extends ImmutableChainStage> stageToExecute)
          Creates a ChainState from Chain and BuildContext and reports any errors
 ChainStateResult ChainResultManagerImpl.create(BuildContext chainBuildContext, java.util.Map<ImmutableChainStage,java.util.Map<ImmutableJob,BuildContext>> jobBuildContexts, java.util.Collection<? extends ImmutableChainStage> stagesToExecute)
           
 ChainStateResult ChainResultManagerImpl.create(BuildContext chainBuildContext, java.util.Map<ImmutableChainStage,java.util.Map<ImmutableJob,BuildContext>> jobBuildContexts, java.util.Collection<? extends ImmutableChainStage> stagesToExecute)
           
 

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

Classes in com.atlassian.bamboo.chains.cache that implement ImmutableChainStage
 class ImmutableChainStageImpl
           
 

Methods in com.atlassian.bamboo.chains.cache that return ImmutableChainStage
 ImmutableChainStage ImmutableChainStage.getMaster()
           
 

Uses of ImmutableChainStage in com.atlassian.bamboo.index
 

Methods in com.atlassian.bamboo.index with parameters of type ImmutableChainStage
 ChainStageResult ChainResultsSummaryDocument.createStageResult(ImmutableChainStage chainStage)
           
 

Uses of ImmutableChainStage in com.atlassian.bamboo.plan
 

Methods in com.atlassian.bamboo.plan that return types with arguments of type ImmutableChainStage
 java.util.Set<ImmutableChainStage> PlanExecutionConfig.getStagesToExecute()
           
 java.util.Set<ImmutableChainStage> PlanExecutionConfigImpl.getStagesToExecute()
           
static java.util.Comparator<ImmutableChainStage> PlanComparators.stageIndexComparator()
           
 

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

Methods in com.atlassian.bamboo.plan.artifact with parameters of type ImmutableChainStage
 java.util.List<ArtifactSubscription> ArtifactSubscriptionManager.validateSubscribersForMovedJob(ImmutableJob producer, ImmutableChainStage producerStage)
          Validate all consumer artifact subscriptions to the artifacts produced by a Job against target stage
 java.util.List<ArtifactSubscription> ArtifactSubscriptionManagerImpl.validateSubscribersForMovedJob(ImmutableJob producer, ImmutableChainStage destinationStage)
           
 java.util.List<ArtifactSubscription> ArtifactSubscriptionManager.validateSubscriptionsForMovedStage(ImmutableChainStage stage, int stageIndex)
          Validate all consumer artifact subscriptions possibly affected by moving of stage.
 java.util.List<ArtifactSubscription> ArtifactSubscriptionManagerImpl.validateSubscriptionsForMovedStage(ImmutableChainStage movedStage, int stageIndexAfterMove)
           
 

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

Methods in com.atlassian.bamboo.plan.cache that return ImmutableChainStage
 ImmutableChainStage ImmutablePlanManager.createImmutableStage(ImmutableChain parent, ChainStage stage)
          Create immutable ChainStage.
 ImmutableChainStage ImmutablePlanManagerImpl.createImmutableStage(ImmutableChain parent, ChainStage stage)
           
 ImmutableChainStage ImmutableJob.getStage()
          The ChainStage that this Job is a member of
 ImmutableChainStage ImmutableJobImpl.getStage()
           
 

Methods in com.atlassian.bamboo.plan.cache that return types with arguments of type ImmutableChainStage
 java.util.List<? extends ImmutableChainStage> ImmutableChain.getAllStages()
          Get Stages of the Chain

Note that this includes ChainStages that have been marked for deletion

 com.google.common.collect.ImmutableList<ImmutableChainStage> AbstractImmutableChain.getAllStages()
           
 java.util.List<? extends ImmutableChainStage> ImmutableChain.getStages()
          Get Stages of the chain.
 com.google.common.collect.ImmutableList<ImmutableChainStage> AbstractImmutableChain.getStages()
           
 

Methods in com.atlassian.bamboo.plan.cache with parameters of type ImmutableChainStage
 ImmutableJob ImmutablePlanManager.createImmutableJob(ImmutableChain parent, ImmutableChainStage stage, Job job)
           
 ImmutableJob ImmutablePlanManagerImpl.createImmutableJob(ImmutableChain parent, ImmutableChainStage stage, Job job)
           
 

Constructors in com.atlassian.bamboo.plan.cache with parameters of type ImmutableChainStage
ImmutableJobImpl(ImmutableChain parent, ImmutableChainStage stage, Job job, BuildLoggerManager buildLoggerManager, LabelManager labelManager, VariableDefinitionManager variableDefinitionManager, TaskManager taskManager, BuildExecutionManager buildExecutionManager, ResultsSummaryManager resultsSummaryManager, BuildDefinition buildDefinition, ImmutablePlanCacheService immutablePlanCacheService, ImmutableArtifactManager immutableArtifactManager)
           
ImmutableJobImpl(ImmutableChain parent, ImmutableChainStage stage, Job job, BuildLoggerManager buildLoggerManager, LabelManager labelManager, VariableDefinitionManager variableDefinitionManager, TaskManager taskManager, BuildExecutionManager buildExecutionManager, ResultsSummaryManager resultsSummaryManager, BuildDefinitionManager buildDefinitionManager, ImmutablePlanCacheService immutablePlanCacheService, ImmutableArtifactManager immutableArtifactManager)
          Deprecated. 
 

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

Methods in com.atlassian.bamboo.ww2.actions that return ImmutableChainStage
 ImmutableChainStage ChainAwareContextHolder.getImmutableChainStage()
           
 ImmutableChainStage ChainActionSupport.getImmutableChainStage()
           
 

Methods in com.atlassian.bamboo.ww2.actions with parameters of type ImmutableChainStage
 void ChainAwareContextHolder.setChainStage(ImmutableChainStage chainStage)
           
 void ChainActionSupport.setChainStage(ImmutableChainStage chainStage)
           
 

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

Methods in com.atlassian.bamboo.ww2.aware that return ImmutableChainStage
 ImmutableChainStage ChainAware.getImmutableChainStage()
           
 

Methods in com.atlassian.bamboo.ww2.aware with parameters of type ImmutableChainStage
 void ChainAware.setChainStage(ImmutableChainStage chainStage)
           
 

Uses of ImmutableChainStage in com.atlassian.bamboo.ww2.beans
 

Methods in com.atlassian.bamboo.ww2.beans that return types with arguments of type ImmutableChainStage
 com.google.common.base.Function<ImmutableChainStage,DecoratedStage> DecoratedNavObjectFactoryImpl.getStageDecorator(DecoratedPlan parent)
           
 com.google.common.base.Function<ImmutableChainStage,DecoratedStage> DecoratedNavObjectFactory.getStageDecorator(DecoratedPlan parent)
          Return a function that could be used to decorate stages
 



Copyright © 2013 Atlassian Software Systems Pty Ltd. All Rights Reserved.