Modifier and Type | Method and Description |
---|---|
@NotNull List<ImmutableBuildable> |
AgentExecutableService.fetchExecutableBuildables(PipelineDefinition agent)
Fetch deployment jobs that can be executed by the given agent.
|
@NotNull List<ImmutableBuildable> |
AgentExecutableServiceImpl.fetchExecutableBuildables(PipelineDefinition agent) |
@NotNull List<DecoratedEnvironment> |
AgentExecutableService.fetchExecutableEnvironments(PipelineDefinition agent)
Fetch deployment environments that can be executed by the given agent.
|
@NotNull List<DecoratedEnvironment> |
AgentExecutableServiceImpl.fetchExecutableEnvironments(PipelineDefinition agent) |
Modifier and Type | Interface and Description |
---|---|
interface |
AgentWithCapabilitiesDefinition |
interface |
ElasticAgentDefinition |
interface |
LocalAgentDefinition |
interface |
RemoteAgentDefinition |
Modifier and Type | Method and Description |
---|---|
@NotNull PipelineDefinition |
RemotableRemoteAgentDefinition.createPipelineDefinition() |
Modifier and Type | Method and Description |
---|---|
void |
BuildQueue.setDefinition(PipelineDefinition pipelineDefinition) |
Modifier and Type | Method and Description |
---|---|
@Nullable PipelineDefinition |
AgentHibernateDao.findAgentByName(@NotNull String name) |
@Nullable PipelineDefinition |
AgentDao.findAgentByName(@NotNull String name)
Retrieve a pipelineDefinition by name.
|
PipelineDefinition |
AgentHibernateDao.getAgentById(long id) |
@Nullable 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
|
@NotNull PipelineDefinition |
AgentHibernateDao.saveAndReturn(@NotNull PipelineDefinition pipelineDefinition) |
@NotNull PipelineDefinition |
AgentDao.saveAndReturn(@NotNull PipelineDefinition pipelineDefinition)
Saves the passed definition and returns a new copy of the updated pipeline definition
|
Modifier and Type | Method and Description |
---|---|
List<PipelineDefinition> |
AgentHibernateDao.findAll() |
List<PipelineDefinition> |
AgentHibernateDao.findAllAgents() |
List<PipelineDefinition> |
AgentDao.findAllAgents()
Retrieves all agents();
|
Set<PipelineDefinition> |
AgentHibernateDao.findAllAgentsForAgentIds(@NotNull Collection<Long> agentIds) |
Set<PipelineDefinition> |
AgentDao.findAllAgentsForAgentIds(@NotNull Collection<Long> agentIds)
Return a list of agents by their ids
|
Modifier and Type | Method and Description |
---|---|
@NotNull PipelineDefinition |
AgentHibernateDao.saveAndReturn(@NotNull PipelineDefinition pipelineDefinition) |
@NotNull PipelineDefinition |
AgentDao.saveAndReturn(@NotNull PipelineDefinition pipelineDefinition)
Saves the passed definition and returns a new copy of the updated pipeline definition
|
Modifier and Type | Method and Description |
---|---|
long |
AgentHibernateDao.getAgentCount(Class<? extends PipelineDefinition> agentDefinitionClass) |
long |
AgentDao.getAgentCount(Class<? extends PipelineDefinition> agentDefinitionClass)
Retrieves the amount of agents of given type stored in the database
|
Modifier and Type | Method and Description |
---|---|
@Nullable PipelineDefinition |
AgentManager.getAgentDefinition(@NotNull Long agentId) |
@Nullable PipelineDefinition |
AgentManagerImpl.getAgentDefinition(@NotNull Long agentId) |
@Nullable PipelineDefinition |
AgentManager.getAgentDefinitionByName(@NotNull String name)
Retrieve a pipelineDefinition by name.
|
@Nullable PipelineDefinition |
AgentManagerImpl.getAgentDefinitionByName(@NotNull String name) |
@NotNull PipelineDefinition |
RemoteAgentManager.registerAgent(@NotNull PipelineDefinition remoteAgentDefinition)
Initial setup / verification of the agent.
|
@NotNull PipelineDefinition |
RemoteAgentManagerImpl.registerAgent(@NotNull PipelineDefinition remoteAgentDefinition) |
Modifier and Type | Method and Description |
---|---|
Map<Long,PipelineDefinition> |
AgentManager.findAllAgentsForAgentIds(@NotNull Collection<Long> agentIds)
Returns a Map of
PipelineDefinition s keyed by their id |
Map<Long,PipelineDefinition> |
AgentManagerImpl.findAllAgentsForAgentIds(@NotNull Collection<Long> agentIds) |
List<PipelineDefinition> |
AgentManager.getAllPersistedAgentDefinitions()
Retrieves a list of all agent definitions stored in the database.
|
List<PipelineDefinition> |
AgentManagerImpl.getAllPersistedAgentDefinitions() |
Modifier and Type | Method and Description |
---|---|
ErrorCollection |
AgentCapabilityServiceImpl.addCapability(@NotNull PipelineDefinition agent,
@NotNull String key,
@NotNull String value) |
ErrorCollection |
AgentCapabilityService.addCapability(@NotNull PipelineDefinition agent,
@NotNull String key,
@NotNull String value)
Add new capability for agent.
|
static Iterable<AgentAssignmentService.AgentAssignmentExecutor> |
AgentAssignmentServiceHelper.asExecutors(PipelineDefinition pipelineDefinition) |
static Iterable<AgentAssignmentService.AgentAssignmentExecutor> |
AgentAssignmentServiceHelper.asExecutors(PipelineDefinition pipelineDefinition,
boolean directAssignmentsOnly) |
@NotNull ReadOnlyCapabilitySet |
AgentCapabilityServiceImpl.getAgentCapabilities(@NotNull PipelineDefinition agent,
boolean includeShared) |
@NotNull ReadOnlyCapabilitySet |
AgentCapabilityService.getAgentCapabilities(@NotNull PipelineDefinition agent,
boolean includeShared) |
@NotNull PipelineDefinition |
RemoteAgentManager.registerAgent(@NotNull PipelineDefinition remoteAgentDefinition)
Initial setup / verification of the agent.
|
@NotNull PipelineDefinition |
RemoteAgentManagerImpl.registerAgent(@NotNull PipelineDefinition remoteAgentDefinition) |
void |
AgentCapabilityServiceImpl.removeCapabilities(@NotNull PipelineDefinition agent) |
void |
AgentCapabilityService.removeCapabilities(@NotNull PipelineDefinition agent)
Remove all capabilities for agent.
|
void |
AgentCapabilityServiceImpl.removeCapability(@NotNull PipelineDefinition agent,
@NotNull String capabilityKey) |
void |
AgentCapabilityService.removeCapability(@NotNull PipelineDefinition agent,
@NotNull String capabilityKey)
Remove agent's capability.
|
void |
AgentManager.saveAnyPipeline(@NotNull PipelineDefinition pipelineDefinition)
Stores a pipeline
PipelineDefinition of any type (elastic, local, remote)
AgentConfigurationUpdateEvent is fired after the pipeline is saved |
void |
AgentManagerImpl.saveAnyPipeline(@NotNull PipelineDefinition pipelineDefinition) |
void |
AgentManager.saveAnyPipeline(@NotNull PipelineDefinition pipelineDefinition,
@Nullable AgentConfigurationUpdatedEventFactory eventFactory)
Stores a pipeline
PipelineDefinition of any type (elastic, local,
remote) |
void |
AgentManagerImpl.saveAnyPipeline(@NotNull PipelineDefinition pipelineDefinition,
@Nullable AgentConfigurationUpdatedEventFactory eventFactory) |
void |
AgentManager.savePipeline(PipelineDefinition pipelineDefinition)
Stores the
PipelineDefinition . |
void |
AgentManagerImpl.savePipeline(@NotNull PipelineDefinition pipelineDefinition) |
void |
AgentManager.savePipeline(PipelineDefinition pipelineDefinition,
@Nullable AgentConfigurationUpdatedEventFactory eventFactory)
Stores the
PipelineDefinition . |
void |
AgentManagerImpl.savePipeline(@NotNull PipelineDefinition pipelineDefinition,
@Nullable AgentConfigurationUpdatedEventFactory eventFactory) |
@NotNull BuildAgent |
AgentStateCache.updateAgentInCache(PipelineDefinition definition) |
ErrorCollection |
AgentCapabilityServiceImpl.updateCapability(@NotNull PipelineDefinition agent,
@NotNull String key,
@Nullable String value,
@NotNull CapabilitySource capabilitySource) |
ErrorCollection |
AgentCapabilityService.updateCapability(@NotNull PipelineDefinition agent,
@NotNull String key,
@Nullable String value,
@NotNull CapabilitySource capabilitySource)
Update value of existing capability.
|
Modifier and Type | Method and Description |
---|---|
long |
AgentManager.getAgentCount(Class<? extends PipelineDefinition> agentDefinitionClass)
Retrieves the amount of agents of given type stored in the database
|
long |
AgentManagerImpl.getAgentCount(Class<? extends PipelineDefinition> agentDefinitionClass) |
Modifier and Type | Method and Description |
---|---|
@Nullable PipelineDefinition |
CapabilityHibernateSetDao.getPipelineDefinition(@NotNull CapabilitySet capabilitySet) |
@Nullable PipelineDefinition |
CapabilitySetDao.getPipelineDefinition(@NotNull CapabilitySet capabilitySet) |
Modifier and Type | Method and Description |
---|---|
static @Nullable CapabilitySet |
CapabilitySetProvider.getAgentCapabilitySet(PipelineDefinition definition) |
Modifier and Type | Field and Description |
---|---|
protected PipelineDefinition |
ConfigureAgentCapability.agent |
protected PipelineDefinition |
ViewAgentDetails.agent |
Modifier and Type | Method and Description |
---|---|
PipelineDefinition |
ViewAgent.getAgent() |
PipelineDefinition |
ConfigureAgentCapability.getAgent() |
PipelineDefinition |
ConfigureAgentAssignments.getAgent() |
PipelineDefinition |
ViewAgentDetails.getAgent() |
PipelineDefinition |
ViewRejectedRequirements.getBuildAgent() |
Modifier and Type | Method and Description |
---|---|
Map<PipelineDefinition,AgentCapabilityDelta> |
RenameAgentCapability.getCapabilityDeltaMap() |
Modifier and Type | Method and Description |
---|---|
void |
ViewAgent.setAgent(PipelineDefinition agent) |
void |
ConfigureAgentCapability.setAgent(PipelineDefinition agent) |
void |
ViewAgentDetails.setAgent(PipelineDefinition agent) |
Modifier and Type | Method and Description |
---|---|
PipelineDefinition |
AgentRegisteringEvent.getAgent() |
PipelineDefinition |
AgentRegisteredEvent.getAgent() |
Constructor and Description |
---|
AgentRegisteredEvent(Object source,
PipelineDefinition agent) |
AgentRegisteringEvent(Object source,
PipelineDefinition agent) |
Modifier and Type | Method and Description |
---|---|
protected @NotNull PipelineDefinition |
PipelineMapper.createItemInstance(@NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor)
Method returns only placeholder for pipeline data.
|
Modifier and Type | Method and Description |
---|---|
void |
PipelineMapper.afterImportListItem(@NotNull org.codehaus.staxmate.in.SMInputCursor cursor,
@NotNull List<PipelineDefinition> pipelineDefinitions,
@NotNull PipelineDefinition pipeline,
long objectIndex,
@NotNull org.hibernate.Session session) |
protected void |
PipelineMapper.exportProperties(@NotNull org.codehaus.staxmate.out.SMOutputElement outputElement,
@NotNull PipelineDefinition object,
@NotNull org.hibernate.Session session,
ExportDetailsBean exportDetailsBean) |
protected void |
PipelineMapper.importProperties(@NotNull PipelineDefinition pipeline,
@NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor,
@NotNull org.hibernate.Session session) |
Modifier and Type | Class and Description |
---|---|
class |
AgentWithCapabilitiesDefinitionImpl |
class |
ElasticAgentDefinitionImpl
Defines an Elastic Agent
|
class |
LocalAgentDefinitionImpl |
class |
PipelineDefinitionImpl |
class |
RemoteAgentDefinitionImpl |
Modifier and Type | Method and Description |
---|---|
@NotNull PipelineDefinition |
RemotableElasticAgentDefinitionImpl.createPipelineDefinition() |
@NotNull PipelineDefinition |
RemotableRemoteAgentDefinitionImpl.createPipelineDefinition() |
@NotNull PipelineDefinition |
BuildAgentImpl.getDefinition() |
@NotNull PipelineDefinition |
BuildAgent.getDefinition() |
Modifier and Type | Method and Description |
---|---|
void |
BuildAgentImpl.setDefinition(@NotNull PipelineDefinition definition) |
void |
BuildAgent.setDefinition(@NotNull PipelineDefinition definition) |
protected void |
RemotableRemoteAgentDefinitionImpl.setPipelineProperties(PipelineDefinition pipelineDefinition) |
Constructor and Description |
---|
BuildAgentImpl(@NotNull PipelineDefinition definition,
@NotNull AgentStatus agentStatus) |
RemotableRemoteAgentDefinitionImpl(PipelineDefinition pipelineDefinition) |
Modifier and Type | Method and Description |
---|---|
@Nullable PipelineDefinition |
CapabilitySetManagerImpl.getPipelineDefinition(@NotNull CapabilitySet capabilitySet) |
@Nullable PipelineDefinition |
CapabilitySetManager.getPipelineDefinition(@NotNull CapabilitySet capabilitySet) |
Modifier and Type | Method and Description |
---|---|
PipelineDefinition |
ViewAgentDetailsAction.getAgent() |
@NotNull PipelineDefinition |
BuildAgentDecorator.getDefinition() |
Modifier and Type | Method and Description |
---|---|
void |
BuildAgentDecorator.setDefinition(@NotNull PipelineDefinition definition) |
Modifier and Type | Method and Description |
---|---|
PipelineDefinition |
ViewBuildResultsTable.getPipelineDefinitionByBuildResult(BuildResultsSummary buildResultsSummary) |
Copyright © 2022 Atlassian Software Systems Pty Ltd. All rights reserved.