|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Publisher | |
---|---|
hudson | |
hudson.matrix | Matrix project |
hudson.maven | Maven support. |
hudson.model | Core object model that are bound to URLs via stapler, rooted at Hudson. |
hudson.tasks | Built-in Builders and Publishers that perform the actual heavy-lifting of a build. |
hudson.tasks.junit | Model objects that represent JUnit test reports. |
hudson.tasks.test | Defines contracts that need to be implemented by a test reporting action (such as the built-in JUnit one). |
jenkins.model | |
org.jvnet.hudson.test | Test harness for Jenkins and its plugins. |
Uses of Publisher in hudson |
---|
Methods in hudson that return types with arguments of type Publisher | |
---|---|
static List<Descriptor<Publisher>> |
Functions.getPublisherDescriptors(AbstractProject<?,?> project)
|
Uses of Publisher in hudson.matrix |
---|
Methods in hudson.matrix that return Publisher | |
---|---|
Publisher |
MatrixConfiguration.getPublisher(Descriptor<Publisher> descriptor)
|
Publisher |
MatrixProject.getPublisher(Descriptor<Publisher> descriptor)
|
Methods in hudson.matrix that return types with arguments of type Publisher | |
---|---|
Map<Descriptor<Publisher>,Publisher> |
MatrixConfiguration.getPublishers()
|
Map<Descriptor<Publisher>,Publisher> |
MatrixConfiguration.getPublishers()
|
Map<Descriptor<Publisher>,Publisher> |
MatrixProject.getPublishers()
|
Map<Descriptor<Publisher>,Publisher> |
MatrixProject.getPublishers()
|
DescribableList<Publisher,Descriptor<Publisher>> |
MatrixConfiguration.getPublishersList()
|
DescribableList<Publisher,Descriptor<Publisher>> |
MatrixConfiguration.getPublishersList()
|
DescribableList<Publisher,Descriptor<Publisher>> |
MatrixProject.getPublishersList()
|
DescribableList<Publisher,Descriptor<Publisher>> |
MatrixProject.getPublishersList()
|
Method parameters in hudson.matrix with type arguments of type Publisher | |
---|---|
Publisher |
MatrixConfiguration.getPublisher(Descriptor<Publisher> descriptor)
|
Publisher |
MatrixProject.getPublisher(Descriptor<Publisher> descriptor)
|
Uses of Publisher in hudson.maven |
---|
Subclasses of Publisher in hudson.maven | |
---|---|
class |
MavenTestDataPublisher
Augments SurefireReport by executing TestDataPublisher s. |
class |
RedeployPublisher
Publisher for MavenModuleSetBuild to deploy artifacts
after a build is fully succeeded. |
Methods in hudson.maven that return Publisher | |
---|---|
Publisher |
MavenTestDataPublisher.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData)
|
Methods in hudson.maven that return types with arguments of type Publisher | |
---|---|
DescribableList<Publisher,Descriptor<Publisher>> |
MavenModuleSet.getPublishers()
List of active Publisher s. |
DescribableList<Publisher,Descriptor<Publisher>> |
MavenModuleSet.getPublishers()
List of active Publisher s. |
DescribableList<Publisher,Descriptor<Publisher>> |
MavenModule.getPublishersList()
|
DescribableList<Publisher,Descriptor<Publisher>> |
MavenModule.getPublishersList()
|
DescribableList<Publisher,Descriptor<Publisher>> |
MavenModuleSet.getPublishersList()
|
DescribableList<Publisher,Descriptor<Publisher>> |
MavenModuleSet.getPublishersList()
|
Constructor parameters in hudson.maven with type arguments of type Publisher | |
---|---|
RedeployPublisher.DescriptorImpl(Class<? extends Publisher> clazz)
Deprecated. as of 1.290 Use the default constructor. |
Uses of Publisher in hudson.model |
---|
Methods in hudson.model that return Publisher | |
---|---|
Publisher |
Project.getPublisher(Descriptor<Publisher> descriptor)
|
Methods in hudson.model that return types with arguments of type Publisher | |
---|---|
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. |
DescribableList<Publisher,Descriptor<Publisher>> |
Project.getPublishersList()
|
DescribableList<Publisher,Descriptor<Publisher>> |
Project.getPublishersList()
|
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. |
Methods in hudson.model with parameters of type Publisher | |
---|---|
void |
Project.addPublisher(Publisher buildStep)
Deprecated. as of 1.290 Use getPublishersList().add(x) |
Method parameters in hudson.model with type arguments of type Publisher | |
---|---|
Publisher |
Project.getPublisher(Descriptor<Publisher> descriptor)
|
void |
Project.removePublisher(Descriptor<Publisher> descriptor)
Deprecated. as of 1.290 Use getPublishersList().remove(x) |
Uses of Publisher in hudson.tasks |
---|
Subclasses of Publisher in hudson.tasks | |
---|---|
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. |
Methods in hudson.tasks that return Publisher | |
---|---|
Publisher |
Fingerprinter.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData)
|
Methods in hudson.tasks that return types with arguments of type Publisher | |
---|---|
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)
|
Method parameters in hudson.tasks with type arguments of type Publisher | |
---|---|
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)
|
Uses of Publisher in hudson.tasks.junit |
---|
Subclasses of Publisher in hudson.tasks.junit | |
---|---|
class |
JUnitResultArchiver
Generates HTML report from JUnit test result XML files. |
Methods in hudson.tasks.junit that return Publisher | |
---|---|
Publisher |
JUnitResultArchiver.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData)
|
Uses of Publisher in hudson.tasks.test |
---|
Subclasses of Publisher in hudson.tasks.test | |
---|---|
class |
AggregatedTestResultPublisher
Aggregates downstream test reports into a single consolidated report, so that people can see the overall test results in one page when tests are scattered across many different jobs. |
Uses of Publisher in jenkins.model |
---|
Methods in jenkins.model that return types with arguments of type Publisher | |
---|---|
Descriptor<Publisher> |
Jenkins.getPublisher(String shortClassName)
Gets the publisher descriptor by name. |
Uses of Publisher in org.jvnet.hudson.test |
---|
Methods in org.jvnet.hudson.test with type parameters of type Publisher | ||
---|---|---|
|
JenkinsRule.configRoundtrip(P before)
Performs a configuration round-trip testing for a publisher. |
|
protected
|
HudsonTestCase.configRoundtrip(P before)
Performs a configuration round-trip testing for a publisher. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |