|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Job | |
---|---|
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.security | Security-related code. |
hudson.tasks | Built-in Builders and Publishers that perform the actual heavy-lifting of a build. |
hudson.util | Other miscellaneous utility code |
jenkins.model | |
org.jvnet.hudson.test | Test harness for Jenkins and its plugins. |
Uses of Job in hudson |
---|
Classes in hudson with type parameters of type Job | |
---|---|
class |
Indenter<J extends Job>
Used by projectView.jelly to indent modules. |
Method parameters in hudson with type arguments of type Job | |
---|---|
static List<JobPropertyDescriptor> |
Functions.getJobPropertyDescriptors(Class<? extends Job> clazz)
|
Uses of Job in hudson.matrix |
---|
Subclasses of Job in hudson.matrix | |
---|---|
class |
MatrixConfiguration
One configuration of MatrixProject . |
class |
MatrixProject
Job that allows you to run multiple different configurations
from a single setting. |
Methods in hudson.matrix that return types with arguments of type Job | |
---|---|
Collection<? extends Job> |
MatrixProject.getAllJobs()
|
Uses of Job in hudson.maven |
---|
Subclasses of Job in hudson.maven | |
---|---|
class |
AbstractMavenProject<P extends AbstractProject<P,R>,R extends AbstractBuild<P,R>>
Common part between MavenModule and MavenModuleSet . |
class |
MavenModule
Job that builds projects based on Maven2. |
class |
MavenModuleSet
Group of MavenModule s. |
Methods in hudson.maven that return types with arguments of type Job | |
---|---|
Collection<Job> |
MavenModuleSet.getAllJobs()
|
Uses of Job in hudson.model |
---|
Classes in hudson.model with type parameters of type Job | |
---|---|
class |
Job<JobT extends Job<JobT,RunT>,RunT extends Run<JobT,RunT>>
A job is an runnable entity under the monitoring of Hudson. |
class |
JobProperty<J extends Job<?,?>>
Extensible property of Job . |
class |
Run<JobT extends Job<JobT,RunT>,RunT extends Run<JobT,RunT>>
A particular execution of Job . |
Subclasses of Job in hudson.model | |
---|---|
class |
AbstractProject<P extends AbstractProject<P,R>,R extends AbstractBuild<P,R>>
Base implementation of Job s that build software. |
class |
FreeStyleProject
Free-style software project. |
class |
Project<P extends Project<P,B>,B extends Build<P,B>>
Buildable software project. |
class |
ViewJob<JobT extends ViewJob<JobT,RunT>,RunT extends Run<JobT,RunT>>
Job that monitors activities that happen outside Hudson,
which requires occasional batch reload activity to obtain the up-to-date information. |
Fields in hudson.model declared as Job | |
---|---|
Job |
JobParameterValue.job
|
protected J |
JobProperty.owner
The Job object that owns this property. |
protected JobT |
Run.project
|
Methods in hudson.model that return Job | |
---|---|
Job |
RunParameterDefinition.getProject()
|
Methods in hudson.model that return types with arguments of type Job | |
---|---|
Collection<? extends Job> |
Item.getAllJobs()
Gets all the jobs that this Item contains as descendants. |
Collection<? extends Job> |
Job.getAllJobs()
|
abstract Collection<? extends Job> |
AbstractItem.getAllJobs()
Gets all the jobs that this Item contains as descendants. |
Methods in hudson.model with parameters of type Job | |
---|---|
boolean |
Fingerprint.BuildPtr.belongsTo(Job job)
Returns true if Fingerprint.BuildPtr points to the given job
or one of its subordinates. |
Fingerprint.RangeSet |
Fingerprint.getRangeSet(Job job)
|
abstract FilePath |
WorkspaceBrowser.getWorkspace(Job job)
Provide access to job's workspace |
boolean |
Fingerprint.BuildPtr.is(Job job)
Returns true if Fingerprint.BuildPtr points to the given job. |
void |
RunMap.load(Job job,
RunMap.Constructor<R> cons)
Deprecated. as of 1.485 Use RunMap.RunMap(File, Constructor) |
boolean |
Cause.UpstreamCause.pointsTo(Job<?,?> j)
Returns true if this cause points to a build in the specified job. |
abstract Run<?,?> |
PermalinkProjectAction.Permalink.resolve(Job<?,?> job)
Resolves the permalink to a build. |
Method parameters in hudson.model with type arguments of type Job | |
---|---|
static List<JobPropertyDescriptor> |
JobPropertyDescriptor.getPropertyDescriptors(Class<? extends Job> clazz)
Gets the JobPropertyDescriptor s applicable for a given job type. |
boolean |
ParametersDefinitionProperty.DescriptorImpl.isApplicable(Class<? extends Job> jobType)
|
boolean |
JobPropertyDescriptor.isApplicable(Class<? extends Job> jobType)
Returns true if this JobProperty type is applicable to the
given job type. |
Constructors in hudson.model with parameters of type Job | |
---|---|
JobParameterValue(String name,
Job job)
|
Uses of Job in hudson.security |
---|
Methods in hudson.security with parameters of type Job | |
---|---|
FormValidation |
AuthorizationMatrixProperty.DescriptorImpl.doCheckName(Job project,
String value)
|
ACL |
AuthorizationStrategy.getACL(Job<?,?> project)
|
ACL |
ProjectMatrixAuthorizationStrategy.getACL(Job<?,?> project)
|
Method parameters in hudson.security with type arguments of type Job | |
---|---|
boolean |
AuthorizationMatrixProperty.DescriptorImpl.isApplicable(Class<? extends Job> jobType)
|
Uses of Job in hudson.tasks |
---|
Methods in hudson.tasks with parameters of type Job | |
---|---|
void |
LogRotator.perform(Job<?,?> job)
|
Uses of Job in hudson.util |
---|
Constructors in hudson.util with parameters of type Job | |
---|---|
RunList(Job j)
|
Constructor parameters in hudson.util with type arguments of type Job | |
---|---|
RunList(Collection<? extends Job> jobs)
|
Uses of Job in jenkins.model |
---|
Methods in jenkins.model that return types with arguments of type Job | |
---|---|
Collection<? extends Job> |
AbstractTopLevelItem.getAllJobs()
|
Methods in jenkins.model with parameters of type Job | |
---|---|
File |
Jenkins.getBuildDirFor(Job job)
|
protected File |
PeepholePermalink.getPermalinkFile(Job<?,?> job)
The file in which the permalink target gets recorded. |
abstract void |
BuildDiscarder.perform(Job<?,?> job)
Called to perform "garbage collection" on the job to discard old build records. |
Run<?,?> |
PeepholePermalink.resolve(Job<?,?> job)
Resolves the permalink by using the cache if possible. |
protected void |
PeepholePermalink.updateCache(Job<?,?> job,
Run<?,?> b)
Remembers the value 'n' in the cache for future PeepholePermalink.resolve(Job) . |
Uses of Job in org.jvnet.hudson.test |
---|
Methods in org.jvnet.hudson.test with type parameters of type Job | ||
---|---|---|
|
JenkinsRule.configRoundtrip(P job)
Loads a configuration page and submits it without any modifications, to perform a round-trip configuration test. |
|
protected
|
HudsonTestCase.configRoundtrip(P job)
Loads a configuration page and submits it without any modifications, to perform a round-trip configuration test. |
Methods in org.jvnet.hudson.test that return types with arguments of type Job | |
---|---|
Collection<? extends Job> |
MockFolder.getAllJobs()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |