Uses of Interface
com.atlassian.bamboo.build.Job

Packages that use Job
com.atlassian.bamboo.build   
com.atlassian.bamboo.build.creation   
com.atlassian.bamboo.chains   
com.atlassian.bamboo.chains.plugins   
com.atlassian.bamboo.migration.stream   
com.atlassian.bamboo.plan   
com.atlassian.bamboo.plan.artifact   
com.atlassian.bamboo.plugins.maven2   
com.atlassian.bamboo.plugins.maven2.dependencies   
com.atlassian.bamboo.utils   
com.atlassian.bamboo.v2.build.trigger   
com.atlassian.bamboo.ww2.actions   
com.atlassian.bamboo.ww2.actions.admin.bulk   
com.atlassian.bamboo.ww2.actions.build.admin   
com.atlassian.bamboo.ww2.actions.build.admin.config   
com.atlassian.bamboo.ww2.actions.chains   
com.atlassian.bamboo.ww2.actions.chains.admin   
com.atlassian.bamboo.ww2.actions.plan   
com.atlassian.bamboo.ww2.actions.plans   
 

Uses of Job in com.atlassian.bamboo.build
 

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

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

Methods in com.atlassian.bamboo.build.creation that return Job
 Job JobCreationService.getNewInstance()
           
 

Methods in com.atlassian.bamboo.build.creation with parameters of type Job
 boolean JobCreationService.cloneBuildable(PlanCreationBean planCreationBean, ActionParametersMap params, Job jobToClone, Job job)
           
 

Uses of Job in com.atlassian.bamboo.chains
 

Methods in com.atlassian.bamboo.chains that return types with arguments of type Job
 java.util.Map<ChainStage,java.util.Map<Job,BuildContext>> BuildContextFactory.createBuildContextsForJobs(Chain chain, BuildContext parentBuildContext)
          Creates a BuildContext for each Job in the Chain
 java.util.Map<ChainStage,java.util.Map<Job,BuildContext>> BuildContextFactoryImpl.createBuildContextsForJobs(Chain chain, BuildContext parentBuildContext)
           
 java.util.Collection<Job> ChainStage.getAllJobs()
          Gets the Jobs associated with this Stage, including the ones marked for deletion
 java.util.List<Job> Chain.getAllJobs()
          Note: Does not include Jobs that are marked for deletion.
 java.util.List<Job> DefaultChain.getAllJobs()
           
 java.util.Set<Job> ChainStageImpl.getAllJobs()
           
 java.util.Set<Job> ChainStage.getJobs()
          Gets the Jobs associated with this Stage, exlcuding the ones marked for deletion
 java.util.Set<Job> ChainStageImpl.getJobs()
           
 

Methods in com.atlassian.bamboo.chains with parameters of type Job
 boolean ChainStage.addJob(Job job)
          Adds a Job to the ChainStage
 boolean ChainStageImpl.addJob(Job job)
           
 boolean ChainStage.removeJob(Job job)
          Removes the Job from the ChainStage
 boolean ChainStageImpl.removeJob(Job job)
           
 

Method parameters in com.atlassian.bamboo.chains with type arguments of type Job
 ChainStateResult ChainResultManager.create(Chain chain, BuildContext chainBuildContext, java.util.Map<ChainStage,java.util.Map<Job,BuildContext>> jobBuildContexts)
          Creates a ChainState from Chain and BuildContext and reports any errors
 ChainStateResult ChainResultManagerImpl.create(Chain chain, BuildContext chainBuildContext, java.util.Map<ChainStage,java.util.Map<Job,BuildContext>> jobBuildContexts)
           
 void ChainStageImpl.setAllJobs(java.util.Set<Job> jobs)
           
 

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

Methods in com.atlassian.bamboo.chains.plugins with parameters of type Job
 void PostJobAction.execute(StageExecution stageExecution, Job job, BuildResultsSummary buildResultsSummary)
          Executes the custom action
 void TestResultSummaryMergeAction.execute(StageExecution stageExecution, Job job, BuildResultsSummary buildResultsSummary)
           
 

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

Methods in com.atlassian.bamboo.migration.stream that return Job
 Job JobMapper.createPlanEntity()
           
 

Methods in com.atlassian.bamboo.migration.stream with parameters of type Job
 void JobMapper.afterImportListItem(org.codehaus.staxmate.in.SMInputCursor inputCursor, java.util.List<Job> plans, Job object, long objectIndex, net.sf.hibernate.Session session)
           
protected  void JobMapper.exportProperties(org.codehaus.staxmate.out.SMOutputElement outputElement, Job object, net.sf.hibernate.Session session)
           
protected  void JobMapper.importProperties(Job object, org.codehaus.staxmate.in.SMInputCursor cursor, net.sf.hibernate.Session session)
           
 

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

Uses of Job in com.atlassian.bamboo.plan
 

Methods in com.atlassian.bamboo.plan that return types with arguments of type Job
static java.util.Comparator<Job> PlanComparators.jobStageIndexComparator()
           
 

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

Methods in com.atlassian.bamboo.plan.artifact that return Job
 Job ArtifactSubscription.getConsumerJob()
          Get job which consumes the artifact
 Job ArtifactSubscriptionSubstitutionAwareImpl.getConsumerJob()
           
 Job ArtifactSubscriptionImpl.getConsumerJob()
           
 Job ArtifactDefinition.getProducerJob()
          Get Buildable that is a producer of artifact
 Job ArtifactDefinitionImpl.getProducerJob()
           
 

Methods in com.atlassian.bamboo.plan.artifact that return types with arguments of type Job
 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
static com.google.common.base.Function<ArtifactSubscription,Job> ArtifactSubscriptionsFunctions.getConsumerJob()
          Get a Function extracting consumer job from artifact subscription object.
static com.google.common.base.Function<ArtifactSubscription,Job> ArtifactSubscriptionsFunctions.getProducerJob()
          Get a Function extracting producer job from artifact subscription object.
 

Methods in com.atlassian.bamboo.plan.artifact with parameters of type Job
 java.util.Map<ArtifactDefinition,ArtifactDefinition> ArtifactDefinitionManager.cloneArtifactDefinitions(Job sourcePlan, Job targetPlan)
          Creates artifact definitions objects for a Buildable plan based according to definitions associated with input Buildable plan.
 java.util.Map<ArtifactDefinition,ArtifactDefinition> ArtifactDefinitionManagerImpl.cloneArtifactDefinitions(Job sourcePlan, Job targetPlan)
           
 java.util.Map<ArtifactDefinition,ArtifactDefinition> ArtifactDefinitionManager.cloneArtifactDefinitions(Job sourcePlan, Job targetPlan, boolean preserveSharedFlag)
          Creates artifact definitions objects for a Buildable plan based according to definitions associated with input Buildable plan.
 java.util.Map<ArtifactDefinition,ArtifactDefinition> ArtifactDefinitionManagerImpl.cloneArtifactDefinitions(Job sourcePlan, Job targetPlan, boolean preserveSharedFlag)
           
 java.util.List<ArtifactSubscription> ArtifactSubscriptionManager.findCurrentSubscriptionsForPlan(Job producerJob)
          Get list of subscriptions existing in a chain for given artifact
 java.util.List<ArtifactSubscription> ArtifactSubscriptionManagerImpl.findCurrentSubscriptionsForPlan(Job producerJob)
           
 java.util.List<ArtifactDefinition> ArtifactSubscriptionManager.findSubscriptionsPossibleForPlan(Job job)
          Get list of chain level artifacts available for specified plan
 java.util.List<ArtifactDefinition> ArtifactSubscriptionManagerImpl.findSubscriptionsPossibleForPlan(Job 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)
           
 void ArtifactSubscription.setConsumerJob(Job consumerJob)
           
 void ArtifactSubscriptionSubstitutionAwareImpl.setConsumerJob(Job consumerJob)
           
 void ArtifactSubscriptionImpl.setConsumerJob(Job consumerJob)
           
 void ArtifactDefinition.setProducerJob(Job producerJob)
          Set Buildable that is a producer of artifact
 void ArtifactDefinitionImpl.setProducerJob(Job producerJob)
           
 java.util.List<ArtifactSubscription> ArtifactSubscriptionManager.validateSubscribersForMovedJob(Job producer, ChainStage producerStage)
          Validate all consumer artifact subscriptions to the artifacts produced by a Job against target stage
 java.util.List<ArtifactSubscription> ArtifactSubscriptionManagerImpl.validateSubscribersForMovedJob(Job producer, ChainStage destinationStage)
           
 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)
           
 

Constructors in com.atlassian.bamboo.plan.artifact with parameters of type Job
ArtifactDefinitionImpl(ArtifactDefinition sourceArtifact, Job newProducerJob, boolean sharedArtifact)
          Constructor used for cloning artifact definitions while a job is being cloned.
ArtifactSubscriptionImpl(ArtifactDefinition artifactDefinition, Job consumerJob, java.lang.String destinationDirectory)
           
 

Uses of Job in com.atlassian.bamboo.plugins.maven2
 

Methods in com.atlassian.bamboo.plugins.maven2 that return Job
 Job ViewMaven2ChainSummary.getDependencyProviderJob()
           
 

Uses of Job in com.atlassian.bamboo.plugins.maven2.dependencies
 

Methods in com.atlassian.bamboo.plugins.maven2.dependencies that return types with arguments of type Job
 java.util.List<Job> AutomaticDependencyManagementPlugin.getDependencyProviderJobs(Chain chain)
          Return list of jobs configured with Maven2 builder for a given chain.
 

Uses of Job in com.atlassian.bamboo.utils
 

Methods in com.atlassian.bamboo.utils that return types with arguments of type Job
static java.util.Comparator<Job> Comparators.getJobStagePlanNameCaseInsensitiveComparator()
           
 

Uses of Job in com.atlassian.bamboo.v2.build.trigger
 

Methods in com.atlassian.bamboo.v2.build.trigger with parameters of type Job
 TriggerReason TriggerReason.getChildTriggerReason(BuildContext child, Job job)
          If build A (triggered because of this TriggerReason) caused builds of plans X,Y,Z to trigger, this method will be called to determine trigger reasons for plans X, Y, Z.
 TriggerReason AbstractTriggerReason.getChildTriggerReason(BuildContext child, Job job)
           
 

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

Methods in com.atlassian.bamboo.ww2.actions with parameters of type Job
 boolean ChainActionSupport.jobHasExecutableAgents(Job job)
          Checks if a Job can be built on any active agent.
 

Uses of Job in com.atlassian.bamboo.ww2.actions.admin.bulk
 

Methods in com.atlassian.bamboo.ww2.actions.admin.bulk that return types with arguments of type Job
 java.util.List<Job> BulkPlanAction.getSortedJobs(Chain chain)
           
 

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

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

Uses of Job 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 Job
 com.google.common.collect.Multimap<ChainStage,Job> ConfigureBuildArtifact.getJobsSubscribedToArtifact(ArtifactDefinition artifactDefinition)
          Get jobs subscribed to artifact
 

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

Methods in com.atlassian.bamboo.ww2.actions.chains that return Job
 Job ViewChainResult.getJobForKey(java.lang.String planKey)
           
 

Methods in com.atlassian.bamboo.ww2.actions.chains that return types with arguments of type Job
 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()
           
 java.util.List<Job> CreateJob.getJobsToClone()
          Used on first render for functional tests
 

Methods in com.atlassian.bamboo.ww2.actions.chains with parameters of type Job
 java.lang.String StageAction.getAgentUnavailabilityHint(Job job)
           
 

Uses of Job in com.atlassian.bamboo.ww2.actions.chains.admin
 

Methods in com.atlassian.bamboo.ww2.actions.chains.admin that return types with arguments of type Job
 com.google.common.collect.Multimap<Job,ArtifactDefinition> ViewChainConfiguration.getArtifactDefinitions()
           
 

Methods in com.atlassian.bamboo.ww2.actions.chains.admin with parameters of type Job
 java.lang.String ViewChainConfiguration.getAgentUnavailabilityHint(Job job)
           
 

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

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

Uses of Job in com.atlassian.bamboo.ww2.actions.plans
 

Methods in com.atlassian.bamboo.ww2.actions.plans with parameters of type Job
static java.lang.String AgentAvailabilityHintHelper.getAgentUnavailabilityHint(PlanExecutableAgentsHelper planExecutableAgentsHelper, ElasticFunctionalityFacade elasticFunctionalityFacade, AdministrationConfigurationManager administrationConfigurationManager, com.atlassian.core.i18n.I18nTextProvider textProvider, Job job, boolean assumeInstanceForEveryImage)
          Returns a string describing the reason for which a job can't (won't) be built.
 



Copyright © 2011 Atlassian. All Rights Reserved.