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

Packages that use ChainStage
com.atlassian.bamboo.build   
com.atlassian.bamboo.chains   
com.atlassian.bamboo.chains.cache   
com.atlassian.bamboo.deletion   
com.atlassian.bamboo.migration.stream   
com.atlassian.bamboo.plan   
com.atlassian.bamboo.plan.branch   
com.atlassian.bamboo.plan.cache   
com.atlassian.bamboo.ww2.actions   
com.atlassian.bamboo.ww2.actions.build.admin.config   
com.atlassian.bamboo.ww2.actions.chains   
com.atlassian.bamboo.ww2.actions.plan   
 

Uses of ChainStage in com.atlassian.bamboo.build
 

Methods in com.atlassian.bamboo.build that return ChainStage
 ChainStage Job.getStage()
          The ChainStage that this Job is a member of
 ChainStage DefaultJob.getStage()
           
 

Methods in com.atlassian.bamboo.build with parameters of type ChainStage
 void Job.setStage(ChainStage stage)
           
 void DefaultJob.setStage(ChainStage chainStage)
           
 

Uses of ChainStage in com.atlassian.bamboo.chains
 

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

Methods in com.atlassian.bamboo.chains that return ChainStage
 ChainStage Chain.addNewStage(java.lang.String name, java.lang.String description, boolean manual)
          Adds a new stage and returns the stage
 

Methods in com.atlassian.bamboo.chains that return types with arguments of type ChainStage
 java.util.List<ChainStage> Chain.getAllStages()
          Get Stages of the Chain

Note that this includes ChainStages that have been marked for deletion

 java.util.List<ChainStage> Chain.getStages()
           
 

Methods in com.atlassian.bamboo.chains with parameters of type ChainStage
 void Chain.addStage(ChainStage chainStage)
           
 

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

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

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

Uses of ChainStage in com.atlassian.bamboo.deletion
 

Methods in com.atlassian.bamboo.deletion with parameters of type ChainStage
 void DeletionService.deleteStage(ChainStage chainStage)
           
 void DeletionServiceImpl.deleteStage(ChainStage chainStage)
           
 

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

Methods in com.atlassian.bamboo.migration.stream that return ChainStage
protected  ChainStage ChainStageMapper.createItemInstance(org.codehaus.staxmate.in.SMInputCursor inputCursor)
           
 

Methods in com.atlassian.bamboo.migration.stream with parameters of type ChainStage
 void ChainStageMapper.afterImportListItem(org.codehaus.staxmate.in.SMInputCursor inputCursor, java.util.List<ChainStage> chainStages, ChainStage stage, long objectIndex, net.sf.hibernate.Session session)
           
protected  void ChainStageMapper.exportProperties(org.codehaus.staxmate.out.SMOutputElement outputElement, ChainStage stage, net.sf.hibernate.Session session, ExportDetailsBean exportDetailsBean)
           
protected  void ChainStageMapper.importProperties(ChainStage stage, org.codehaus.staxmate.in.SMInputCursor inputCursor, net.sf.hibernate.Session session)
           
 

Method parameters in com.atlassian.bamboo.migration.stream with type arguments of type ChainStage
 void ChainStageMapper.afterImportListItem(org.codehaus.staxmate.in.SMInputCursor inputCursor, java.util.List<ChainStage> chainStages, ChainStage stage, long objectIndex, net.sf.hibernate.Session session)
           
 

Constructors in com.atlassian.bamboo.migration.stream with parameters of type ChainStage
ChainBuildMapper(net.sf.hibernate.SessionFactory sessionFactory, ChainStage stage, PlanDao planDao)
           
 

Uses of ChainStage in com.atlassian.bamboo.plan
 

Methods in com.atlassian.bamboo.plan that return ChainStage
 ChainStage AbstractChain.addNewStage(java.lang.String name, java.lang.String description, boolean manual)
           
static ChainStage PlanHelper.getBranchedStage(Chain chainBranch, ChainStage masterStage)
           
 

Methods in com.atlassian.bamboo.plan that return types with arguments of type ChainStage
 java.util.List<ChainStage> AbstractChain.getAllStages()
           
 java.util.List<ChainStage> AbstractChain.getStages()
           
 

Methods in com.atlassian.bamboo.plan with parameters of type ChainStage
 void AbstractChain.addStage(ChainStage chainStage)
           
static ChainStage PlanHelper.getBranchedStage(Chain chainBranch, ChainStage masterStage)
           
 

Method parameters in com.atlassian.bamboo.plan with type arguments of type ChainStage
 void AbstractChain.setAllStages(java.util.List<ChainStage> allStages)
           
 

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

Methods in com.atlassian.bamboo.plan.branch that return ChainStage
 ChainStage ChainPropagatingFacade.addNewStage(java.lang.String stageName, java.lang.String stageDescription, boolean stageManual)
           
 ChainStage ChainStagePropagatingFacade.getStageForChain(Chain chain)
           
 

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

Constructors in com.atlassian.bamboo.plan.branch with parameters of type ChainStage
ChainStagePropagatingFacade(ChainBranchManager chainBranchManager, ChainStage masterStage)
           
 

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

Methods in com.atlassian.bamboo.plan.cache with parameters of type ChainStage
 ImmutableChainStage ImmutablePlanManager.createImmutableStage(ImmutableChain parent, ChainStage stage)
          Create immutable ChainStage.
 ImmutableChainStage ImmutablePlanManagerImpl.createImmutableStage(ImmutableChain parent, ChainStage stage)
           
 

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

Methods in com.atlassian.bamboo.ww2.actions that return ChainStage
 ChainStage ChainActionSupport.getMutableChainStage()
           
 

Uses of ChainStage in com.atlassian.bamboo.ww2.actions.build.admin.config
 

Methods in com.atlassian.bamboo.ww2.actions.build.admin.config that return types with arguments of type ChainStage
 com.google.common.collect.Multimap<ChainStage,Job> ConfigureBuildArtifact.getJobsSubscribedToArtifact(ArtifactDefinition artifactDefinition)
          Get jobs subscribed to artifact
 

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

Methods in com.atlassian.bamboo.ww2.actions.chains that return types with arguments of type ChainStage
 com.google.common.collect.Multimap<ChainStage,Job> MoveStageAction.getJobsContainingInvalidSubscriptions()
          This method returns consumers of artifacts for which exists a subscription that would be broken by the move operation that triggered the action.
 com.google.common.collect.Multimap<ChainStage,Job> MoveJobAction.getJobsContainingInvalidSubscriptions()
          This method returns consumers of artifacts for which exists a subscription that would be broken by the move operation that triggered the action.
 com.google.common.collect.Multimap<ChainStage,Job> DeleteStageAction.getJobsContainingInvalidSubscriptions()
           
 com.google.common.collect.Multimap<ChainStage,Job> CreateJob.getJobsContainingInvalidSubscriptions()
           
 

Methods in com.atlassian.bamboo.ww2.actions.chains with parameters of type ChainStage
protected  void MoveStageAction.moveStage(java.util.List<ChainStage> stages, ChainStage stage, int index)
           
 

Method parameters in com.atlassian.bamboo.ww2.actions.chains with type arguments of type ChainStage
protected  void MoveStageAction.moveStage(java.util.List<ChainStage> stages, ChainStage stage, int index)
           
 

Uses of ChainStage in com.atlassian.bamboo.ww2.actions.plan
 

Methods in com.atlassian.bamboo.ww2.actions.plan that return types with arguments of type ChainStage
 com.google.common.collect.Multimap<ChainStage,Job> DeletePlan.getJobsContainingInvalidSubscriptions()
           
 



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