Package | Description |
---|---|
hudson | |
hudson.model |
Core object model that are bound to URLs via stapler, rooted at Hudson.
|
hudson.tasks | |
jenkins.model |
Modifier and Type | Method and Description |
---|---|
static List<Descriptor<Publisher>> |
Functions.getPublisherDescriptors(AbstractProject<?,?> project) |
Modifier and Type | Method and Description |
---|---|
Publisher |
Project.getPublisher(Descriptor<Publisher> descriptor) |
Modifier and Type | Method and Description |
---|---|
Map<Descriptor<Publisher>,Publisher> |
Project.getPublishers()
Deprecated.
as of 1.463
We will be soon removing the restriction that only one instance of publisher is allowed per type.
Use
Project.getPublishersList() instead. |
Map<Descriptor<Publisher>,Publisher> |
Project.getPublishers()
Deprecated.
as of 1.463
We will be soon removing the restriction that only one instance of publisher is allowed per type.
Use
Project.getPublishersList() instead. |
abstract DescribableList<Publisher,Descriptor<Publisher>> |
AbstractProject.getPublishersList()
Returns the live list of all
Publisher s configured for this project. |
abstract DescribableList<Publisher,Descriptor<Publisher>> |
AbstractProject.getPublishersList()
Returns the live list of all
Publisher s configured for this project. |
DescribableList<Publisher,Descriptor<Publisher>> |
Project.getPublishersList() |
DescribableList<Publisher,Descriptor<Publisher>> |
Project.getPublishersList() |
Modifier and Type | Method and Description |
---|---|
void |
Project.addPublisher(Publisher buildStep)
Deprecated.
as of 1.290
Use
getPublishersList().add(x) |
Modifier and Type | Method and Description |
---|---|
Publisher |
Project.getPublisher(Descriptor<Publisher> descriptor) |
void |
Project.removePublisher(Descriptor<Publisher> descriptor)
Deprecated.
as of 1.290
Use
getPublishersList().remove(x) |
Modifier and Type | Class and Description |
---|---|
class |
ArtifactArchiver
Copies the artifacts into an archive directory.
|
class |
BuildTrigger
Triggers builds of other projects.
|
class |
Fingerprinter
Records fingerprints of the specified files.
|
class |
Notifier
BuildStep s that run after the build is completed. |
class |
Recorder
BuildStep s that run after the build is completed. |
Modifier and Type | Method and Description |
---|---|
Publisher |
Fingerprinter.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
Modifier and Type | Method and Description |
---|---|
static DescriptorExtensionList<Publisher,Descriptor<Publisher>> |
Publisher.all()
Returns all the registered
Publisher descriptors. |
static DescriptorExtensionList<Publisher,Descriptor<Publisher>> |
Publisher.all()
Returns all the registered
Publisher descriptors. |
Descriptor<Publisher> |
BuildStep.PublisherList.get(int index) |
Descriptor<Publisher> |
Publisher.getDescriptor() |
Iterator<Descriptor<Publisher>> |
BuildStep.PublisherList.iterator() |
protected List<ExtensionComponent<Descriptor<Publisher>>> |
Publisher.DescriptorExtensionListImpl.sort(List<ExtensionComponent<Descriptor<Publisher>>> r) |
Modifier and Type | Method and Description |
---|---|
boolean |
BuildStep.PublisherList.add(Descriptor<Publisher> d) |
void |
BuildStep.PublisherList.add(int index,
Descriptor<Publisher> d) |
void |
BuildStep.PublisherList.addNotifier(Descriptor<Publisher> d)
Adds a new publisher descriptor, which (generally speaking)
shouldn't alter the build result, but just report the build result
by some means, such as e-mail, IRC, etc.
|
void |
BuildStep.PublisherList.addRecorder(Descriptor<Publisher> d)
Adds a new publisher descriptor, which (generally speaking)
alter the build result based on some artifacts of the build.
|
int |
Publisher.DescriptorExtensionListImpl.compare(ExtensionComponent<Descriptor<Publisher>> lhs,
ExtensionComponent<Descriptor<Publisher>> rhs) |
int |
Publisher.DescriptorExtensionListImpl.compare(ExtensionComponent<Descriptor<Publisher>> lhs,
ExtensionComponent<Descriptor<Publisher>> rhs) |
protected List<ExtensionComponent<Descriptor<Publisher>>> |
Publisher.DescriptorExtensionListImpl.sort(List<ExtensionComponent<Descriptor<Publisher>>> r) |
Modifier and Type | Method and Description |
---|---|
Descriptor<Publisher> |
Jenkins.getPublisher(String shortClassName)
Gets the publisher descriptor by name.
|
Copyright © 2014. All rights reserved.