Package | Description |
---|---|
hudson | |
hudson.model |
Core object model that are bound to URLs via stapler, rooted at Hudson.
|
hudson.slaves |
Code related to agents.
|
Modifier and Type | Method and Description |
---|---|
static List<Descriptor<ComputerLauncher>> |
Functions.getComputerLauncherDescriptors()
Deprecated.
replaced by
Slave.SlaveDescriptor#computerLauncherDescriptors(Slave) |
Modifier and Type | Method and Description |
---|---|
ComputerLauncher |
Slave.getLauncher() |
Modifier and Type | Method and Description |
---|---|
List<Descriptor<ComputerLauncher>> |
Slave.SlaveDescriptor.computerLauncherDescriptors(Slave it)
Returns the list of
ComputerLauncher descriptors appropriate to the supplied Slave . |
Modifier and Type | Method and Description |
---|---|
void |
Slave.setLauncher(ComputerLauncher launcher) |
Constructor and Description |
---|
Slave(String name,
String remoteFS,
ComputerLauncher launcher) |
Slave(String name,
String nodeDescription,
String remoteFS,
int numExecutors,
Node.Mode mode,
String labelString,
ComputerLauncher launcher,
RetentionStrategy retentionStrategy)
Deprecated.
since 2009-02-20.
|
Slave(String name,
String nodeDescription,
String remoteFS,
int numExecutors,
Node.Mode mode,
String labelString,
ComputerLauncher launcher,
RetentionStrategy retentionStrategy,
List<? extends NodeProperty<?>> nodeProperties)
Deprecated.
as of 1.XXX
Use
Slave.Slave(String, String, ComputerLauncher) and set the rest through setters. |
Slave(String name,
String nodeDescription,
String remoteFS,
String numExecutors,
Node.Mode mode,
String labelString,
ComputerLauncher launcher,
RetentionStrategy retentionStrategy,
List<? extends NodeProperty<?>> nodeProperties) |
Modifier and Type | Class and Description |
---|---|
class |
CommandLauncher
ComputerLauncher through a remote login mechanism like ssh/rsh. |
class |
ComputerLauncherFilter
ComputerLauncher filter that can be used as a base class for decorators. |
class |
DelegatingComputerLauncher
Base implementation of
ComputerLauncher that to be used by launchers that
perform some initialization (typically something cloud/v12n related
to power up the machine), and then delegate to another ComputerLauncher
to connect. |
class |
JNLPLauncher
ComputerLauncher via JNLP. |
Modifier and Type | Field and Description |
---|---|
protected ComputerLauncher |
ComputerLauncherFilter.core |
protected ComputerLauncher |
DelegatingComputerLauncher.launcher |
Modifier and Type | Field and Description |
---|---|
static Descriptor<ComputerLauncher> |
JNLPLauncher.DESCRIPTOR
Deprecated.
as of 1.XXX
Use
Jenkins.getDescriptor(Class) |
static DescriptorList<ComputerLauncher> |
ComputerLauncher.LIST
Deprecated.
as of 1.281
Use
Extension for registration, and use
Jenkins.getDescriptorList(Class) for read access. |
Modifier and Type | Method and Description |
---|---|
ComputerLauncher |
ComputerLauncherFilter.getCore()
Returns the delegation target.
|
ComputerLauncher |
SlaveComputer.getLauncher() |
ComputerLauncher |
DelegatingComputerLauncher.getLauncher() |
protected ComputerLauncher |
SlaveComputer.grabLauncher(Node node)
|
abstract ComputerLauncher |
ComputerConnector.launch(String host,
TaskListener listener)
Creates a
ComputerLauncher for connecting to the given host. |
Modifier and Type | Method and Description |
---|---|
List<Descriptor<ComputerLauncher>> |
DelegatingComputerLauncher.DescriptorImpl.applicableDescriptors(Slave it,
Slave.SlaveDescriptor itDescriptor)
Returns the applicable nested computer launcher types.
|
List<Descriptor<ComputerLauncher>> |
DelegatingComputerLauncher.DescriptorImpl.getApplicableDescriptors()
|
Descriptor<ComputerLauncher> |
ComputerLauncherFilter.getDescriptor() |
Constructor and Description |
---|
AbstractCloudSlave(String name,
String nodeDescription,
String remoteFS,
int numExecutors,
Node.Mode mode,
String labelString,
ComputerLauncher launcher,
RetentionStrategy retentionStrategy,
List<? extends NodeProperty<?>> nodeProperties) |
AbstractCloudSlave(String name,
String nodeDescription,
String remoteFS,
String numExecutors,
Node.Mode mode,
String labelString,
ComputerLauncher launcher,
RetentionStrategy retentionStrategy,
List<? extends NodeProperty<?>> nodeProperties) |
ComputerLauncherFilter(ComputerLauncher core) |
DelegatingComputerLauncher(ComputerLauncher launcher) |
DumbSlave(String name,
String remoteFS,
ComputerLauncher launcher) |
DumbSlave(String name,
String nodeDescription,
String remoteFS,
String numExecutors,
Node.Mode mode,
String labelString,
ComputerLauncher launcher,
RetentionStrategy retentionStrategy)
Deprecated.
|
DumbSlave(String name,
String nodeDescription,
String remoteFS,
String numExecutors,
Node.Mode mode,
String labelString,
ComputerLauncher launcher,
RetentionStrategy retentionStrategy,
List<? extends NodeProperty<?>> nodeProperties)
Deprecated.
as of 1.XXX.
Use
DumbSlave.DumbSlave(String, String, ComputerLauncher) and configure the rest through setters. |
Copyright © 2004–2017. All rights reserved.