Uses of Interface
com.atlassian.bamboo.v2.build.CommonContext

Packages that use CommonContext
com.atlassian.bamboo.build.pipeline.tasks   
com.atlassian.bamboo.chains   
com.atlassian.bamboo.deployments.execution   
com.atlassian.bamboo.event   
com.atlassian.bamboo.execution   
com.atlassian.bamboo.plan   
com.atlassian.bamboo.plugins.vcs.task   
com.atlassian.bamboo.task   
com.atlassian.bamboo.task.repository   
com.atlassian.bamboo.v2.build   
com.atlassian.bamboo.v2.build.agent   
com.atlassian.bamboo.v2.build.agent.messages   
com.atlassian.bamboo.v2.build.agent.remote   
com.atlassian.bamboo.v2.build.queue   
com.atlassian.bamboo.v2.build.task   
com.atlassian.bamboo.variable   
 

Uses of CommonContext in com.atlassian.bamboo.build.pipeline.tasks
 

Methods in com.atlassian.bamboo.build.pipeline.tasks that return CommonContext
 CommonContext PrepareBuildTask.call(CommonContext commonContext, ReadOnlyCapabilitySet capabilitySet)
           
 CommonContext ExecuteBuildTask.call(CommonContext commonContext, ReadOnlyCapabilitySet capabilitySet)
           
 

Methods in com.atlassian.bamboo.build.pipeline.tasks with parameters of type CommonContext
 CommonContext PrepareBuildTask.call(CommonContext commonContext, ReadOnlyCapabilitySet capabilitySet)
           
 CommonContext ExecuteBuildTask.call(CommonContext commonContext, ReadOnlyCapabilitySet capabilitySet)
           
 

Uses of CommonContext in com.atlassian.bamboo.chains
 

Methods in com.atlassian.bamboo.chains with parameters of type CommonContext
static void ChainPluginSupportHelper.prepareRuntimeTaskData(CommonContext commonContext, TaskManager taskManager, ErrorUpdateHandler errorUpdateHandler)
           
static void ChainPluginSupportHelper.processRuntimeTaskData(CommonContext commonContext, TaskManager taskManager, ErrorUpdateHandler errorUpdateHandler)
           
 

Uses of CommonContext in com.atlassian.bamboo.deployments.execution
 

Subinterfaces of CommonContext in com.atlassian.bamboo.deployments.execution
 interface DeploymentContext
           
 

Classes in com.atlassian.bamboo.deployments.execution that implement CommonContext
 class DeploymentContextImpl
           
 

Uses of CommonContext in com.atlassian.bamboo.event
 

Classes in com.atlassian.bamboo.event with type parameters of type CommonContext
 interface ContextEvent<C extends CommonContext>
           
 

Uses of CommonContext in com.atlassian.bamboo.execution
 

Methods in com.atlassian.bamboo.execution with parameters of type CommonContext
 void ExecutionPhaseService.agentAssigned(CommonContext context, long agentId)
          This is executed on the agent
 void ExecutionPhaseServiceImpl.agentAssigned(CommonContext context, long agentId)
           
 void ExecutionPhaseService.executionFinished(CommonContext context)
          Marks finish of tasks execution.
 void ExecutionPhaseServiceImpl.executionFinished(CommonContext context)
           
 void ExecutionPhaseService.executionStarted(CommonContext context)
          Marks start of tasks execution.
 void ExecutionPhaseServiceImpl.executionStarted(CommonContext context)
           
 void ExecutionPhaseService.queued(CommonContext context)
          This is executed on the server When the build/deployment gets put on the queue
 void ExecutionPhaseServiceImpl.queued(CommonContext context)
           
 void ExecutionPhaseService.vcsSyncStarted(CommonContext context)
          This is executed on the agent
 void ExecutionPhaseServiceImpl.vcsSyncStarted(CommonContext context)
          Implementation for Deployments is simple do-nothing
 

Uses of CommonContext in com.atlassian.bamboo.plan
 

Methods in com.atlassian.bamboo.plan that return CommonContext
 CommonContext ExecutableAgentsHelper.ExecutorQuery.getContext()
           
 

Methods in com.atlassian.bamboo.plan with parameters of type CommonContext
 ExecutableAgentsHelper.ExecutorQuery ExecutableAgentsHelper.ExecutorQuery.withContext(CommonContext context)
           
 

Uses of CommonContext in com.atlassian.bamboo.plugins.vcs.task
 

Classes in com.atlassian.bamboo.plugins.vcs.task that implement CommonContext
 class DeploymentRepositoryBuildContext
           
 

Constructors in com.atlassian.bamboo.plugins.vcs.task with parameters of type CommonContext
DeploymentRepositoryBuildContext(CommonContext commonContext)
           
 

Uses of CommonContext in com.atlassian.bamboo.task
 

Methods in com.atlassian.bamboo.task that return CommonContext
 CommonContext CommonTaskContextImpl.getBuildContext()
           
 CommonContext CommonTaskContext.getCommonContext()
          Contains all the build related information about the running of the tasks
 CommonContext TaskExecutionContext.getCommonContext()
           
 CommonContext CommonTaskContextImpl.getCommonContext()
           
 

Methods in com.atlassian.bamboo.task with parameters of type CommonContext
 java.util.List<TaskResult> TaskExecutor.execute(CommonContext buildContext, ReadOnlyCapabilitySet readOnlyCapabilitySet)
           
 java.util.List<TaskResult> TaskExecutorImpl.execute(CommonContext buildContext, ReadOnlyCapabilitySet readOnlyCapabilitySet)
           
 java.util.List<TaskResult> TaskExecutor.executePreparationTasks(CommonContext buildContext, ReadOnlyCapabilitySet readOnlyCapabilitySet)
           
 java.util.List<TaskResult> TaskExecutorImpl.executePreparationTasks(CommonContext buildContext, ReadOnlyCapabilitySet readOnlyCapabilitySet)
           
 java.util.Map<java.lang.String,java.lang.String> RuntimeTaskDataProvider.populateRuntimeTaskData(TaskDefinition taskDefinition, CommonContext commonContext)
          Server side pre-build action that may be implemented by task.
 void RuntimeTaskDataProvider.processRuntimeTaskData(TaskDefinition taskDefinition, CommonContext commonContext)
          Server side post-build action that may be implemented by task.
 

Constructors in com.atlassian.bamboo.task with parameters of type CommonContext
TaskExecutionContext(java.util.Queue<TaskDefinition> tasks, TaskExecutionStrategy executionStrategy, CommonContext commonContext, ReadOnlyCapabilitySet capabilities, BuildLoggerManager buildLoggerManager, java.io.File defaultRootDirectory)
           
 

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

Methods in com.atlassian.bamboo.task.repository with parameters of type CommonContext
static RepositoryDefinition RepositoryTaskHelper.getRepositoryDefinitionByIdSelector(CommonContext buildContext, TaskDefinition taskDefinition, java.lang.String repositoryIdSelector)
           
 

Uses of CommonContext in com.atlassian.bamboo.v2.build
 

Subinterfaces of CommonContext in com.atlassian.bamboo.v2.build
 interface BuildContext
          A class that encapsulates how to build a particular plan at a given instance
 

Classes in com.atlassian.bamboo.v2.build that implement CommonContext
 class BuildContextImpl
           
 

Methods in com.atlassian.bamboo.v2.build with parameters of type CommonContext
static java.util.Map<java.lang.String,java.lang.String> BuildContextHelper.getArtifactHandlerConfiguration(CommonContext context)
           
static java.io.File BuildContextHelper.getBuildWorkingDirectory(CommonContext buildContext)
           
static void CommonContextHelper.rewire(CommonContext context)
           
 

Uses of CommonContext in com.atlassian.bamboo.v2.build.agent
 

Methods in com.atlassian.bamboo.v2.build.agent that return CommonContext
 CommonContext BuildPhase.call(CommonContext buildContext, ReadOnlyCapabilitySet capabilitySet)
          Execute the build task.
 CommonContext DefaultBuildAgent.getBuilding()
           
 CommonContext ExecutableBuildAgent.getBuilding()
          Gets the BuildContext related to the build that is building on the agent.
 

Methods in com.atlassian.bamboo.v2.build.agent with parameters of type CommonContext
 void DefaultBuildAgent.build(CommonContext newBuildContext, ReadOnlyCapabilitySet agentCapabilities)
           
 void ExecutableBuildAgent.build(CommonContext currentlyBuilding, ReadOnlyCapabilitySet agentCapabilities)
          Executes the passed CommonContext
 CommonContext BuildPhase.call(CommonContext buildContext, ReadOnlyCapabilitySet capabilitySet)
          Execute the build task.
 java.util.Collection<BuildAgent> BuildAgentRequirementFilter.filter(CommonContext context, java.util.Collection<BuildAgent> agents, RequirementSet requirements)
          Filter the given collection of agents by the requirements
 void ResultProcessor.processResult(CommonContext context)
           
 void LocalResultProcessor.processResult(CommonContext context)
           
 

Uses of CommonContext in com.atlassian.bamboo.v2.build.agent.messages
 

Methods in com.atlassian.bamboo.v2.build.agent.messages that return CommonContext
 CommonContext ProcessResult.getContext()
           
 

Constructors in com.atlassian.bamboo.v2.build.agent.messages with parameters of type CommonContext
ProcessResult(CommonContext context)
           
 

Uses of CommonContext in com.atlassian.bamboo.v2.build.agent.remote
 

Methods in com.atlassian.bamboo.v2.build.agent.remote with parameters of type CommonContext
 void RemoteExecutionPhaseServiceImpl.agentAssigned(CommonContext context, long agentId)
           
 void RemoteExecutionPhaseServiceImpl.executionFinished(CommonContext context)
           
 void RemoteExecutionPhaseServiceImpl.executionStarted(CommonContext context)
           
 void RemoteResultProcessor.processResult(CommonContext context)
           
 void RemoteExecutionPhaseServiceImpl.queued(CommonContext context)
           
 void RemoteExecutionPhaseServiceImpl.vcsSyncStarted(CommonContext context)
          Implementation for Deployments is simple do-nothing
 

Uses of CommonContext in com.atlassian.bamboo.v2.build.queue
 

Methods in com.atlassian.bamboo.v2.build.queue that return CommonContext
 CommonContext AgentQueueAccessor.takeBuildContext(long agentId)
          Takes a BuildContext from the queue, blocking until one is available.
 CommonContext AgentQueueAccessorImpl.takeBuildContext(long id)
           
 

Methods in com.atlassian.bamboo.v2.build.queue that return types with arguments of type CommonContext
 com.google.common.collect.ImmutableList<CommonContext> BuildQueueManager.getBuildQueue()
          Returns a list of BuildContext objects currently in the build queue.
 com.google.common.collect.ImmutableList<CommonContext> BuildQueueManagerImpl.getBuildQueue()
           
 com.google.common.collect.ImmutableList<CommonContext> BuildQueueManager.getRecentBuildQueue()
          Returns a list of BuildContext objects currently in the build queue.
 com.google.common.collect.ImmutableList<CommonContext> BuildQueueManagerImpl.getRecentBuildQueue()
           
 

Methods in com.atlassian.bamboo.v2.build.queue with parameters of type CommonContext
 void BuildQueueManager.addToQueue(CommonContext context)
          Attempts to add the build to a queue.
 void BuildQueueManagerImpl.addToQueue(CommonContext context)
           
 

Uses of CommonContext in com.atlassian.bamboo.v2.build.task
 

Methods in com.atlassian.bamboo.v2.build.task that return CommonContext
 CommonContext InitializeBuild.call(CommonContext commonContext, ReadOnlyCapabilitySet capabilitySet)
           
 

Methods in com.atlassian.bamboo.v2.build.task with parameters of type CommonContext
 CommonContext InitializeBuild.call(CommonContext commonContext, ReadOnlyCapabilitySet capabilitySet)
           
 

Uses of CommonContext in com.atlassian.bamboo.variable
 

Methods in com.atlassian.bamboo.variable with parameters of type CommonContext
<V> V
CustomVariableContextRunner.execute(CommonContext context, java.util.concurrent.Callable<V> callable)
           
<V> V
CustomVariableContextRunnerImpl.execute(CommonContext context, java.util.concurrent.Callable<V> callable)
           
 void CustomVariableContextRunner.execute(CommonContext buildContext, java.lang.Runnable runnable)
           
 void CustomVariableContextRunnerImpl.execute(CommonContext context, java.lang.Runnable runnable)
           
 java.util.Map<java.lang.String,java.lang.String> CustomVariableContext.getVariables(CommonContext commonContext)
          Get all variables from context.
 java.util.Map<java.lang.String,java.lang.String> CustomVariableContextImpl.getVariables(CommonContext buildContext)
           
 void CustomVariableContext.setCommonContext(CommonContext commonContext)
          Set context reference in ThreadLocal state.
 void CustomVariableContextImpl.setCommonContext(CommonContext commonContext)
           
 java.lang.String CustomVariableContext.substituteString(java.lang.String value, CommonContext commonContext, BuildLogger buildLogger)
          Substitutes variables in the input string with their values using provided data, i.e.
 java.lang.String CustomVariableContextImpl.substituteString(java.lang.String value, CommonContext commonContext, BuildLogger buildLogger)
           
 



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