|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of PipelineDefinition in com.atlassian.bamboo.buildqueue |
|---|
| Subinterfaces of PipelineDefinition in com.atlassian.bamboo.buildqueue | |
|---|---|
interface |
AgentWithCapabilitiesDefinition
|
interface |
ElasticAgentDefinition
|
interface |
LocalAgentDefinition
|
interface |
RemoteAgentDefinition
|
| Methods in com.atlassian.bamboo.buildqueue with parameters of type PipelineDefinition | |
|---|---|
void |
BuildQueue.setDefinition(PipelineDefinition pipelineDefinition)
|
| Uses of PipelineDefinition in com.atlassian.bamboo.buildqueue.dao |
|---|
| Methods in com.atlassian.bamboo.buildqueue.dao that return PipelineDefinition | |
|---|---|
PipelineDefinition |
AgentHibernateDao.findAgentByName(java.lang.String name)
|
PipelineDefinition |
AgentDao.findAgentByName(java.lang.String name)
Retrieve a pipelineDefinition by name. |
PipelineDefinition |
AgentHibernateDao.getAgentById(long id)
|
PipelineDefinition |
AgentDao.getAgentById(long id)
Retrieve the agentDefinition object. |
PipelineDefinition |
AgentDao.getLocalAgentById(long id)
Retrieve the localAgentDefinition |
PipelineDefinition |
AgentDao.getRemoteAgentById(long id)
Retrieve the remoteAgentDefinition |
PipelineDefinition |
AgentHibernateDao.saveAndReturn(PipelineDefinition pipelineDefinition)
|
PipelineDefinition |
AgentDao.saveAndReturn(PipelineDefinition pipelineDefinition)
Saves the passed definition and returns a new copy of the updated pipeline definition |
| Methods in com.atlassian.bamboo.buildqueue.dao that return types with arguments of type PipelineDefinition | |
|---|---|
java.util.List<PipelineDefinition> |
AgentHibernateDao.findAll()
|
java.util.List<PipelineDefinition> |
AgentHibernateDao.findAllAgents()
|
java.util.List<PipelineDefinition> |
AgentDao.findAllAgents()
Retrieves all agents(); |
java.util.Set<PipelineDefinition> |
AgentHibernateDao.findAllAgentsForAgentIds(java.util.Collection<java.lang.Long> agentIds)
|
java.util.Set<PipelineDefinition> |
AgentDao.findAllAgentsForAgentIds(java.util.Collection<java.lang.Long> agentIds)
Return a list of agents by their ids |
java.util.List<PipelineDefinition> |
AgentHibernateDao.findAllAgentsWithNameLike(java.lang.String nameLike)
|
java.util.List<PipelineDefinition> |
AgentDao.findAllAgentsWithNameLike(java.lang.String likeName)
Retrun a list of agents whose name is like the provided string. |
| Methods in com.atlassian.bamboo.buildqueue.dao with parameters of type PipelineDefinition | |
|---|---|
PipelineDefinition |
AgentHibernateDao.saveAndReturn(PipelineDefinition pipelineDefinition)
|
PipelineDefinition |
AgentDao.saveAndReturn(PipelineDefinition pipelineDefinition)
Saves the passed definition and returns a new copy of the updated pipeline definition |
| Uses of PipelineDefinition in com.atlassian.bamboo.buildqueue.manager |
|---|
| Methods in com.atlassian.bamboo.buildqueue.manager that return PipelineDefinition | |
|---|---|
PipelineDefinition |
AgentManagerImpl.getAgentDefinition(java.lang.Long agentId)
|
PipelineDefinition |
AgentManager.getAgentDefinition(java.lang.Long agentId)
|
PipelineDefinition |
AgentManagerImpl.getAgentDefinitionByName(java.lang.String name)
|
PipelineDefinition |
AgentManager.getAgentDefinitionByName(java.lang.String name)
Retrieve a pipelineDefinition by name. |
PipelineDefinition |
RemoteAgentManagerImpl.registerAgent(PipelineDefinition remoteAgentDefinition)
|
PipelineDefinition |
RemoteAgentManager.registerAgent(PipelineDefinition remoteAgentDefinition)
Initial setup / verification of the agent. |
| Methods in com.atlassian.bamboo.buildqueue.manager that return types with arguments of type PipelineDefinition | |
|---|---|
java.util.Map<java.lang.Long,PipelineDefinition> |
AgentManagerImpl.findAllAgentsForAgentIds(java.util.Collection<java.lang.Long> agentIds)
|
java.util.Map<java.lang.Long,PipelineDefinition> |
AgentManager.findAllAgentsForAgentIds(java.util.Collection<java.lang.Long> agentIds)
Returns a Map of PipelineDefinitions keyed by their id |
java.util.List<PipelineDefinition> |
AgentManagerImpl.getAgentDefinitionsWithNameLike(java.lang.String likeName)
|
java.util.List<PipelineDefinition> |
AgentManager.getAgentDefinitionsWithNameLike(java.lang.String likeName)
Retrun a list of agents whose name is like the provided string. |
java.util.List<PipelineDefinition> |
AgentManagerImpl.getAllPersistedAgentDefinitions()
|
java.util.List<PipelineDefinition> |
AgentManager.getAllPersistedAgentDefinitions()
Retrieves a list of all agent definitions stored in the database. |
| Methods in com.atlassian.bamboo.buildqueue.manager with parameters of type PipelineDefinition | |
|---|---|
static java.lang.Iterable<AgentAssignmentService.AgentAssignmentExecutor> |
AgentAssignmentServiceHelper.asExecutors(PipelineDefinition pipelineDefinition)
|
static java.lang.Iterable<AgentAssignmentService.AgentAssignmentExecutor> |
AgentAssignmentServiceHelper.asExecutors(PipelineDefinition pipelineDefinition,
boolean directAssignmentsOnly)
|
PipelineDefinition |
RemoteAgentManagerImpl.registerAgent(PipelineDefinition remoteAgentDefinition)
|
PipelineDefinition |
RemoteAgentManager.registerAgent(PipelineDefinition remoteAgentDefinition)
Initial setup / verification of the agent. |
void |
AgentManagerImpl.saveAnyPipeline(PipelineDefinition pipelineDefinition)
|
void |
AgentManager.saveAnyPipeline(PipelineDefinition pipelineDefinition)
Stores a pipeline PipelineDefinition of any type (elastic, local, remote)
AgentConfigurationUpdateEvent is fired after the pipeline is saved |
void |
AgentManagerImpl.saveAnyPipeline(PipelineDefinition pipelineDefinition,
AgentConfigurationUpdatedEventFactory eventFactory)
|
void |
AgentManager.saveAnyPipeline(PipelineDefinition pipelineDefinition,
AgentConfigurationUpdatedEventFactory eventFactory)
Stores a pipeline PipelineDefinition of any type (elastic, local,
remote) |
void |
AgentManagerImpl.savePipeline(PipelineDefinition pipelineDefinition)
|
void |
AgentManager.savePipeline(PipelineDefinition pipelineDefinition)
Stores the PipelineDefinition. |
void |
AgentManagerImpl.savePipeline(PipelineDefinition pipelineDefinition,
AgentConfigurationUpdatedEventFactory eventFactory)
|
void |
AgentManager.savePipeline(PipelineDefinition pipelineDefinition,
AgentConfigurationUpdatedEventFactory eventFactory)
Stores the PipelineDefinition. |
BuildAgent |
AgentStateCache.updateAgentInCache(PipelineDefinition definition)
|
protected void |
RemoteAgentManagerImpl.updateNameForDuplicates(PipelineDefinition remoteAgentDefinition)
|
| Uses of PipelineDefinition in com.atlassian.bamboo.capability |
|---|
| Methods in com.atlassian.bamboo.capability that return PipelineDefinition | |
|---|---|
PipelineDefinition |
CapabilityHibernateSetDao.getPipelineDefinition(CapabilitySet capabilitySet)
|
PipelineDefinition |
CapabilitySetDao.getPipelineDefinition(CapabilitySet capabilitySet)
|
| Methods in com.atlassian.bamboo.capability with parameters of type PipelineDefinition | |
|---|---|
static CapabilitySet |
CapabilitySetProvider.getAgentCapabilitySet(PipelineDefinition definition)
|
| Uses of PipelineDefinition in com.atlassian.bamboo.configuration.agent |
|---|
| Fields in com.atlassian.bamboo.configuration.agent declared as PipelineDefinition | |
|---|---|
protected PipelineDefinition |
ConfigureAgentDetails.agent
|
protected PipelineDefinition |
ConfigureAgentCapability.agent
|
| Methods in com.atlassian.bamboo.configuration.agent that return PipelineDefinition | |
|---|---|
PipelineDefinition |
ViewAgent.getAgent()
|
PipelineDefinition |
ConfigureAgentDetails.getAgent()
|
PipelineDefinition |
ConfigureAgentCapability.getAgent()
|
PipelineDefinition |
ConfigureAgentAssignments.getAgent()
|
PipelineDefinition |
ViewRejectedRequirements.getBuildAgent()
|
| Methods in com.atlassian.bamboo.configuration.agent that return types with arguments of type PipelineDefinition | |
|---|---|
java.util.Map<PipelineDefinition,AgentCapabilityDelta> |
RenameAgentCapability.getCapabilityDeltaMap()
|
| Methods in com.atlassian.bamboo.configuration.agent with parameters of type PipelineDefinition | |
|---|---|
void |
ViewAgent.setAgent(PipelineDefinition agent)
|
void |
ConfigureAgentDetails.setAgent(PipelineDefinition agent)
|
void |
ConfigureAgentCapability.setAgent(PipelineDefinition agent)
|
| Uses of PipelineDefinition in com.atlassian.bamboo.migration.stream |
|---|
| Methods in com.atlassian.bamboo.migration.stream that return PipelineDefinition | |
|---|---|
protected PipelineDefinition |
PipelineMapper.createItemInstance(org.codehaus.staxmate.in.SMInputCursor inputCursor)
Method returns only placeholder for pipeline data. |
| Methods in com.atlassian.bamboo.migration.stream with parameters of type PipelineDefinition | |
|---|---|
void |
PipelineMapper.afterImportListItem(org.codehaus.staxmate.in.SMInputCursor cursor,
java.util.List<PipelineDefinition> pipelineDefinitions,
PipelineDefinition pipeline,
long objectIndex,
net.sf.hibernate.Session session)
|
protected void |
PipelineMapper.exportProperties(org.codehaus.staxmate.out.SMOutputElement outputElement,
PipelineDefinition object,
net.sf.hibernate.Session session,
ExportDetailsBean exportDetailsBean)
|
protected void |
PipelineMapper.importProperties(PipelineDefinition pipeline,
org.codehaus.staxmate.in.SMInputCursor inputCursor,
net.sf.hibernate.Session session)
|
| Method parameters in com.atlassian.bamboo.migration.stream with type arguments of type PipelineDefinition | |
|---|---|
void |
PipelineMapper.afterImportListItem(org.codehaus.staxmate.in.SMInputCursor cursor,
java.util.List<PipelineDefinition> pipelineDefinitions,
PipelineDefinition pipeline,
long objectIndex,
net.sf.hibernate.Session session)
|
void |
PipelineMapper.beforeImportListItem(org.codehaus.staxmate.in.SMInputCursor cursor,
java.util.List<PipelineDefinition> pipelineDefinitions,
net.sf.hibernate.Session session)
|
| Uses of PipelineDefinition in com.atlassian.bamboo.v2.build.agent |
|---|
| Classes in com.atlassian.bamboo.v2.build.agent that implement PipelineDefinition | |
|---|---|
class |
AgentWithCapabilitiesDefinitionImpl
|
class |
ElasticAgentDefinitionImpl
Defines an Elastic Agent |
class |
LocalAgentDefinitionImpl
|
class |
PipelineDefinitionImpl
|
class |
RemoteAgentDefinitionImpl
|
| Methods in com.atlassian.bamboo.v2.build.agent that return PipelineDefinition | |
|---|---|
PipelineDefinition |
BuildAgent.getDefinition()
|
PipelineDefinition |
BuildAgentImpl.getDefinition()
|
| Methods in com.atlassian.bamboo.v2.build.agent with parameters of type PipelineDefinition | |
|---|---|
static PipelineDefinition.TYPE |
BuildAgentTypeAccessor.getAgentType(PipelineDefinition definition)
Deprecated. |
static boolean |
BuildAgentTypeAccessor.isElastic(PipelineDefinition definition)
Deprecated. |
static boolean |
BuildAgentTypeAccessor.isLocal(PipelineDefinition definition)
Deprecated. |
static boolean |
BuildAgentTypeAccessor.isRemote(PipelineDefinition definition)
Deprecated. |
void |
BuildAgent.setDefinition(PipelineDefinition definition)
|
void |
BuildAgentImpl.setDefinition(PipelineDefinition definition)
|
| Constructors in com.atlassian.bamboo.v2.build.agent with parameters of type PipelineDefinition | |
|---|---|
BuildAgentImpl(PipelineDefinition definition,
AgentStatus agentStatus)
|
|
| Uses of PipelineDefinition in com.atlassian.bamboo.v2.build.agent.capability |
|---|
| Methods in com.atlassian.bamboo.v2.build.agent.capability that return PipelineDefinition | |
|---|---|
PipelineDefinition |
CapabilitySetManager.getPipelineDefinition(CapabilitySet capabilitySet)
|
PipelineDefinition |
CapabilitySetManagerImpl.getPipelineDefinition(CapabilitySet capabilitySet)
|
| Uses of PipelineDefinition in com.atlassian.bamboo.v2.build.agent.remote |
|---|
| Methods in com.atlassian.bamboo.v2.build.agent.remote with parameters of type PipelineDefinition | |
|---|---|
void |
AgentConfiguration.saveAgentDefinition(PipelineDefinition remoteConfiguration)
|
| Uses of PipelineDefinition in com.atlassian.bamboo.ww2.actions.agent |
|---|
| Methods in com.atlassian.bamboo.ww2.actions.agent that return PipelineDefinition | |
|---|---|
PipelineDefinition |
ViewAgentDetailsAction.getAgent()
|
PipelineDefinition |
BuildAgentDecorator.getDefinition()
|
| Methods in com.atlassian.bamboo.ww2.actions.agent with parameters of type PipelineDefinition | |
|---|---|
void |
BuildAgentDecorator.setDefinition(PipelineDefinition definition)
|
| Uses of PipelineDefinition in com.atlassian.bamboo.ww2.actions.build |
|---|
| Methods in com.atlassian.bamboo.ww2.actions.build that return PipelineDefinition | |
|---|---|
PipelineDefinition |
ViewBuildResultsTable.getPipelineDefinitionByBuildResult(BuildResultsSummary buildResultsSummary)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||