Package | Description |
---|---|
hudson | |
hudson.model |
Core object model that are bound to URLs via stapler, rooted at Hudson.
|
hudson.model.labels |
Boolean expression over labels.
|
hudson.node_monitors |
Code that monitors the health of slaves
|
hudson.scm |
Hudson's interface with source code management systems.
|
hudson.search |
QuickSilver-like
search/jump capability for better navigation around the website.
|
hudson.security |
Security-related code.
|
hudson.security.csrf | |
hudson.slaves |
Code related to slaves.
|
hudson.tasks | |
hudson.tools | |
hudson.triggers |
Built-in Triggers that run periodically to kick a new build.
|
hudson.util |
Other miscellaneous utility code
|
hudson.views | |
jenkins.model | |
jenkins.mvn | |
jenkins.security | |
jenkins.security.s2m |
Slave -> master security.
|
Modifier and Type | Method and Description |
---|---|
void |
Plugin.configure(net.sf.json.JSONObject formData)
Deprecated.
as of 1.305 override
Plugin.configure(StaplerRequest,JSONObject) instead |
void |
Plugin.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData)
Handles the submission for the system configuration.
|
T |
DescriptorExtensionList.newInstanceFromRadioList(net.sf.json.JSONObject config)
Creates a new instance of a
Describable
from the structured form submission data posted
by a radio button group. |
T |
DescriptorExtensionList.newInstanceFromRadioList(net.sf.json.JSONObject parent,
String name) |
Modifier and Type | Method and Description |
---|---|
protected <T extends Describable<T>> |
AbstractProject.buildDescribable(org.kohsuke.stapler.StaplerRequest req,
List<? extends Descriptor<T>> descriptors) |
protected <T extends Describable<T>> |
AbstractProject.buildDescribable(org.kohsuke.stapler.StaplerRequest req,
List<? extends Descriptor<T>> descriptors,
String prefix)
Deprecated.
As of 1.261. Use
AbstractProject.buildDescribable(StaplerRequest, List) instead. |
boolean |
Descriptor.configure(org.kohsuke.stapler.StaplerRequest req)
Deprecated.
As of 1.239, use
Descriptor.configure(StaplerRequest, JSONObject) . |
boolean |
Descriptor.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json)
Invoked when the global configuration page is submitted.
|
boolean |
UsageStatistics.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
static View |
View.create(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp,
ViewGroup owner) |
org.kohsuke.stapler.HttpResponse |
ComputerSet.doConfigSubmit(org.kohsuke.stapler.StaplerRequest req)
Accepts submission from the configuration page.
|
org.kohsuke.stapler.HttpResponse |
Run.doConfigSubmit(org.kohsuke.stapler.StaplerRequest req) |
void |
Job.doConfigSubmit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp)
Accepts submission from the configuration page.
|
void |
Computer.doConfigSubmit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp)
Accepts the update to the node configuration.
|
void |
User.doConfigSubmit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp)
Accepts submission from the configuration page.
|
void |
AbstractProject.doConfigSubmit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp) |
void |
View.doConfigSubmit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp)
Accepts submission from the configuration page.
|
void |
TreeView.doCreateView(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp) |
void |
MyViewsProperty.doCreateView(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp) |
void |
ComputerSet.doDoCreateItem(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp,
String name,
String type)
Really creates a new slave.
|
TopLevelItem |
TopLevelItemDescriptor.newInstance(org.kohsuke.stapler.StaplerRequest req)
Deprecated.
since 2007-01-19.
This is not a valid operation for
Item s. |
T |
Descriptor.newInstance(org.kohsuke.stapler.StaplerRequest req)
Deprecated.
Implement
Descriptor.newInstance(StaplerRequest, JSONObject) method instead.
Deprecated as of 1.145. |
JobProperty<?> |
JobPropertyDescriptor.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData)
Creates a configured instance from the submitted form.
|
T |
Descriptor.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData)
Creates a configured instance from the submitted form.
|
ParameterDefinition |
RunParameterDefinition.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
ParameterDefinition |
JobParameterDefinition.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
static <T extends Describable<T>> |
Descriptor.newInstancesFromHeteroList(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData,
String key,
Collection<? extends Descriptor<T>> descriptors)
Used to build
Describable instance list from <f:hetero-list> tag. |
static <T extends Describable<T>> |
Descriptor.newInstancesFromHeteroList(org.kohsuke.stapler.StaplerRequest req,
Object formData,
Collection<? extends Descriptor<T>> descriptors) |
UserProperty |
MyViewsProperty.reconfigure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject form) |
T |
ReconfigurableDescribable.reconfigure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject form)
When a parent/owner object of a Describable gets a config form submission and instances are
recreated, this method is invoked on the existing instance (meaning the 'this' reference
points to the existing instance) to create a new instance to be added to the parent/owner object.
|
JobProperty<?> |
JobProperty.reconfigure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject form) |
Node |
Node.reconfigure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject form) |
UserProperty |
UserProperty.reconfigure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject form) |
ViewProperty |
ViewProperty.reconfigure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject form) |
void |
View.rename(String newName)
Renames this view.
|
protected void |
MyView.submit(org.kohsuke.stapler.StaplerRequest req) |
protected void |
TreeView.submit(org.kohsuke.stapler.StaplerRequest req) |
protected void |
ListView.submit(org.kohsuke.stapler.StaplerRequest req)
Handles the configuration submission.
|
protected abstract void |
View.submit(org.kohsuke.stapler.StaplerRequest req)
Handles the configuration submission.
|
protected void |
AllView.submit(org.kohsuke.stapler.StaplerRequest req) |
protected void |
ProxyView.submit(org.kohsuke.stapler.StaplerRequest req) |
protected void |
Job.submit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp)
Derived class can override this to perform additional config submission
work.
|
protected void |
Project.submit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp) |
protected void |
AbstractProject.submit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp) |
protected void |
ViewJob.submit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp) |
Constructor and Description |
---|
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) |
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 | Method and Description |
---|---|
void |
LabelAtom.doConfigSubmit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp)
Accepts the update to the node configuration.
|
Modifier and Type | Method and Description |
---|---|
NodeMonitor |
ArchitectureMonitor.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
Modifier and Type | Method and Description |
---|---|
static <T extends RepositoryBrowser> |
RepositoryBrowsers.createInstance(Class<T> type,
org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject parent,
String fieldName)
Creates an instance of
RepositoryBrowser from a form submission. |
static <T extends RepositoryBrowser> |
RepositoryBrowsers.createInstance(Class<T> type,
org.kohsuke.stapler.StaplerRequest req,
String fieldName)
Deprecated.
since 2008-06-19.
Use
RepositoryBrowsers.createInstance(Class, StaplerRequest, JSONObject, String) . |
SCM |
NullSCM.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
static SCM |
SCMS.parseSCM(org.kohsuke.stapler.StaplerRequest req)
Deprecated.
as of 1.294
Use
SCMS.parseSCM(StaplerRequest, AbstractProject) and pass in the caller's project type. |
static SCM |
SCMS.parseSCM(org.kohsuke.stapler.StaplerRequest req,
AbstractProject target)
Parses
SCM configuration from the submitted form. |
Modifier and Type | Method and Description |
---|---|
UserProperty |
UserSearchProperty.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
Modifier and Type | Method and Description |
---|---|
boolean |
GlobalSecurityConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
void |
GlobalSecurityConfiguration.doConfigure(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp) |
HudsonPrivateSecurityRealm.Details |
HudsonPrivateSecurityRealm.Details.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
AuthorizationStrategy |
AuthorizationStrategy.Unsecured.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
Modifier and Type | Method and Description |
---|---|
boolean |
GlobalCrumbIssuerConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
DefaultCrumbIssuer |
DefaultCrumbIssuer.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
Modifier and Type | Method and Description |
---|---|
NodeProperty<?> |
NodeProperty.reconfigure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject form) |
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) |
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) |
Modifier and Type | Method and Description |
---|---|
boolean |
Shell.DescriptorImpl.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject data) |
BuildTrigger |
BuildTrigger.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
ArtifactArchiver |
ArtifactArchiver.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
Builder |
Maven.DescriptorImpl.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
Modifier and Type | Method and Description |
---|---|
boolean |
ToolDescriptor.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
Modifier and Type | Method and Description |
---|---|
boolean |
SCMTrigger.DescriptorImpl.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
Modifier and Type | Method and Description |
---|---|
T |
DescriptorList.newInstanceFromRadioList(net.sf.json.JSONObject config)
Creates a new instance of a
Describable
from the structured form submission data posted
by a radio button group. |
T |
DescriptorList.newInstanceFromRadioList(net.sf.json.JSONObject parent,
String name) |
void |
DescribableList.rebuild(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json,
List<? extends Descriptor<T>> descriptors)
Rebuilds the list by creating a fresh instances from the submitted form.
|
void |
DescribableList.rebuild(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json,
List<? extends Descriptor<T>> descriptors,
String prefix)
Deprecated.
as of 1.271
Use
DescribableList.rebuild(StaplerRequest, JSONObject, List) instead. |
void |
DescribableList.rebuildHetero(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData,
Collection<? extends Descriptor<T>> descriptors,
String key)
Rebuilds the list by creating a fresh instances from the submitted form.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ViewsTabBar.GlobalConfigurationImpl.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
boolean |
MyViewsTabBar.GlobalConfigurationImpl.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
boolean |
GlobalDefaultViewConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
Modifier and Type | Method and Description |
---|---|
boolean |
GlobalNodePropertiesConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
boolean |
DownloadSettings.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
boolean |
GlobalPluginConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
boolean |
JenkinsLocationConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
boolean |
ArtifactManagerConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
boolean |
GlobalProjectNamingStrategyConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
boolean |
GlobalQuietPeriodConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
boolean |
GlobalSCMRetryCountConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
boolean |
GlobalCloudConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
boolean |
MasterBuildConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
void |
Jenkins.doConfigExecutorsSubmit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp)
Accepts submission from the node configuration page.
|
void |
Jenkins.doConfigSubmit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp)
Accepts submission from the configuration page.
|
void |
Jenkins.MasterComputer.doConfigSubmit(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp) |
void |
Jenkins.doCreateView(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp) |
JobProperty<?> |
OptionalJobProperty.OptionalJobPropertyDescriptor.newInstance(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject formData) |
Modifier and Type | Method and Description |
---|---|
boolean |
GlobalMavenConfig.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
static SettingsProvider |
SettingsProvider.parseSettingsProvider(org.kohsuke.stapler.StaplerRequest req) |
static GlobalSettingsProvider |
GlobalSettingsProvider.parseSettingsProvider(org.kohsuke.stapler.StaplerRequest req) |
Modifier and Type | Method and Description |
---|---|
boolean |
QueueItemAuthenticatorConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
UserProperty |
ApiTokenProperty.reconfigure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject form) |
UserProperty |
LastGrantedAuthoritiesProperty.reconfigure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject form)
Stick to the same object since there's no UI for this.
|
Modifier and Type | Method and Description |
---|---|
boolean |
MasterKillSwitchConfiguration.configure(org.kohsuke.stapler.StaplerRequest req,
net.sf.json.JSONObject json) |
Copyright © 2017. All rights reserved.