Uses of Interface
com.atlassian.bamboo.plan.cache.ImmutableJob

Packages that use ImmutableJob
com.atlassian.bamboo.build   
com.atlassian.bamboo.chains   
com.atlassian.bamboo.chains.cache   
com.atlassian.bamboo.plan   
com.atlassian.bamboo.plan.artifact   
com.atlassian.bamboo.plan.cache   
com.atlassian.bamboo.plugins.maven.dependencies   
com.atlassian.bamboo.plugins.rest.service   
com.atlassian.bamboo.resultsummary.tests   
com.atlassian.bamboo.task.repository   
com.atlassian.bamboo.utils   
com.atlassian.bamboo.ww2.actions.chains   
 

Uses of ImmutableJob in com.atlassian.bamboo.build
 

Subinterfaces of ImmutableJob in com.atlassian.bamboo.build
 interface Job
           
 

Classes in com.atlassian.bamboo.build that implement ImmutableJob
 class DefaultJob
           
 

Constructors in com.atlassian.bamboo.build with parameters of type ImmutableJob
JobStatusHelper(ImmutableJob job, BuildExecutionManager buildExecutionManager)
           
 

Uses of ImmutableJob in com.atlassian.bamboo.chains
 

Methods in com.atlassian.bamboo.chains that return types with arguments of type ImmutableJob
 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)
           
 

Method parameters in com.atlassian.bamboo.chains with type arguments of type ImmutableJob
 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)
           
 

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

Methods in com.atlassian.bamboo.chains.cache that return types with arguments of type ImmutableJob
 java.util.Set<? extends ImmutableJob> ImmutableChainStage.getJobs()
          Gets the ImmutableJobs associated with this Stage, excluding the ones marked for deletion
 

Uses of ImmutableJob in com.atlassian.bamboo.plan
 

Methods in com.atlassian.bamboo.plan that return ImmutableJob
static ImmutableJob PlanHelper.getBranchedImmutableJob(ImmutableChain chainBranch, ImmutableJob masterJob)
          Searches for a corresponding job in a branch.
 

Methods in com.atlassian.bamboo.plan with parameters of type ImmutableJob
static ImmutableJob PlanHelper.getBranchedImmutableJob(ImmutableChain chainBranch, ImmutableJob masterJob)
          Searches for a corresponding job in a branch.
 

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

Methods in com.atlassian.bamboo.plan.artifact with parameters of type ImmutableJob
 java.util.List<ArtifactSubscriptionContext> ArtifactSubscriptionManager.prepareSubscriptionContexts(ImmutableJob job, PlanResultKey planResultKey)
           
 java.util.List<ArtifactSubscriptionContext> ArtifactSubscriptionManagerImpl.prepareSubscriptionContexts(ImmutableJob job, PlanResultKey chainResultKey)
           
 

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

Classes in com.atlassian.bamboo.plan.cache that implement ImmutableJob
 class ImmutableJobImpl
           
 

Methods in com.atlassian.bamboo.plan.cache that return ImmutableJob
 ImmutableJob ImmutableJob.getMaster()
           
 ImmutableJob ImmutablePlanCacheService.getMasterOfJob(PlanKey jobKey, PlanKey masterChainKey)
           
 ImmutableJob ImmutablePlanCacheServiceImpl.getMasterOfJob(PlanKey jobKey, PlanKey masterChainKey)
           
 

Methods in com.atlassian.bamboo.plan.cache that return types with arguments of type ImmutableJob
 java.util.List<? extends ImmutableJob> ImmutableChain.getAllJobs()
          Note: Does not include Jobs that are marked for deletion.
 

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

Methods in com.atlassian.bamboo.plugins.maven.dependencies that return ImmutableJob
static ImmutableJob MavenDependencyHelper.findDependencyProviderJob(ImmutableChain chain)
           
 ImmutableJob ViewMaven2ChainSummary.getDependencyProviderJob()
           
 

Uses of ImmutableJob in com.atlassian.bamboo.plugins.rest.service
 

Methods in com.atlassian.bamboo.plugins.rest.service that return types with arguments of type ImmutableJob
 java.util.List<ImmutableJob> PlanServiceImpl.getBranchesForJob(Job job)
           
 java.util.List<ImmutableJob> PlanService.getBranchesForJob(Job job)
           
 

Uses of ImmutableJob in com.atlassian.bamboo.resultsummary.tests
 

Methods in com.atlassian.bamboo.resultsummary.tests with parameters of type ImmutableJob
 java.util.List<TestCase> TestQuarantineManager.getCurrentlyQuarantinedTests(ImmutableJob job)
          Get a list of TestClass and TestCase names of all the tests currently quarantined for a given job In string form for use in the BuildContext custom config
 java.util.List<TestCase> TestQuarantineManagerImpl.getCurrentlyQuarantinedTests(ImmutableJob job)
           
 java.util.List<TestCase> TestsHibernateDao.getQuarantinedTestCasesForJob(ImmutableJob job)
           
 java.util.List<TestCase> TestsDao.getQuarantinedTestCasesForJob(ImmutableJob job)
          Provide a list of the quarantined tests for a job
 

Uses of ImmutableJob in com.atlassian.bamboo.task.repository
 

Methods in com.atlassian.bamboo.task.repository with parameters of type ImmutableJob
 java.util.List<RepositoryDefinition> RepositoryAwareTaskConfigurator.getRepositoriesUsedByTask(TaskDefinition taskDefinition, ImmutableJob job)
           
 java.util.List<RepositoryDefinition> AbstractRepositoryAwareTaskConfigurator.getRepositoriesUsedByTask(TaskDefinition taskDefinition, ImmutableJob job)
           
 

Uses of ImmutableJob in com.atlassian.bamboo.utils
 

Methods in com.atlassian.bamboo.utils that return types with arguments of type ImmutableJob
static com.google.common.collect.Ordering<ImmutableJob> Comparators.getJobStagePlanNameCaseInsensitiveOrdering()
           
 

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

Methods in com.atlassian.bamboo.ww2.actions.chains that return types with arguments of type ImmutableJob
 java.util.List<ImmutableJob> ViewAggregatedJobPlugins.getAvailableJobs()
           
 java.util.List<ImmutableJob> CreateJob.getJobsToClone()
          Used on first render for functional tests
 



Copyright © 2012 Atlassian. All Rights Reserved.