Package | Description |
---|---|
hudson.cli |
Server-side CLI commands for Hudson.
|
hudson.model |
Core object model that are bound to URLs via stapler, rooted at Hudson.
|
hudson.triggers |
Built-in Triggers that run periodically to kick a new build.
|
jenkins.model | |
jenkins.util |
Modifier and Type | Class and Description |
---|---|
static class |
BuildCommand.CLICause |
Modifier and Type | Class and Description |
---|---|
static class |
Cause.LegacyCodeCause
Deprecated.
since 2009-02-08
|
static class |
Cause.RemoteCause |
static class |
Cause.UpstreamCause
A build is triggered by another build (AKA upstream build.)
|
static class |
Cause.UpstreamCause.DeeplyNestedUpstreamCause |
static class |
Cause.UserCause
Deprecated.
1.428
use
Cause.UserIdCause |
static class |
Cause.UserIdCause
A build is started by an user action.
|
Modifier and Type | Method and Description |
---|---|
<T extends Cause> |
CauseAction.findCause(Class<T> type)
Finds the cause of the specific type.
|
<T extends Cause> |
Run.getCause(Class<T> type)
Returns a
Cause of a particular type. |
Modifier and Type | Method and Description |
---|---|
Map<Cause,Integer> |
CauseAction.getCauseCounts()
Get list of causes with duplicates combined into counters.
|
List<Cause> |
CauseAction.getCauses()
Lists all causes of this build.
|
List<Cause> |
Run.getCauses()
Returns the
Cause s that triggered a build. |
List<Cause> |
Queue.Item.getCauses()
Convenience method that returns a read only view of the
Cause s associated with this item in the queue. |
List<Cause> |
Cause.UpstreamCause.getUpstreamCauses() |
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractProject.scheduleBuild(Cause c)
Schedules a build of this project.
|
boolean |
BuildableItem.scheduleBuild(Cause c) |
boolean |
AbstractProject.scheduleBuild(int quietPeriod,
Cause c) |
boolean |
BuildableItem.scheduleBuild(int quietPeriod,
Cause c) |
boolean |
AbstractProject.scheduleBuild(int quietPeriod,
Cause c,
Action... actions)
Schedules a build.
|
QueueTaskFuture<R> |
AbstractProject.scheduleBuild2(int quietPeriod,
Cause c)
Schedules a build of this project, and returns a
Future object
to wait for the completion of the build. |
QueueTaskFuture<R> |
AbstractProject.scheduleBuild2(int quietPeriod,
Cause c,
Action... actions)
Schedules a build of this project, and returns a
Future object
to wait for the completion of the build. |
QueueTaskFuture<R> |
AbstractProject.scheduleBuild2(int quietPeriod,
Cause c,
Collection<? extends Action> actions)
Schedules a build of this project, and returns a
Future object
to wait for the completion of the build. |
Modifier and Type | Method and Description |
---|---|
void |
BuildListener.started(List<Cause> causes)
Called when a build is started.
|
void |
StreamBuildListener.started(List<Cause> causes) |
Constructor and Description |
---|
CauseAction(Cause... c) |
CauseAction(Cause c) |
Constructor and Description |
---|
CauseAction(Collection<? extends Cause> causes) |
Modifier and Type | Class and Description |
---|---|
static class |
SCMTrigger.SCMTriggerCause |
static class |
TimerTrigger.TimerTriggerCause |
Modifier and Type | Method and Description |
---|---|
boolean |
ParameterizedJobMixIn.scheduleBuild(Cause c) |
boolean |
ParameterizedJobMixIn.scheduleBuild(int quietPeriod,
Cause c) |
Modifier and Type | Method and Description |
---|---|
void |
BuildListenerAdapter.started(List<Cause> causes) |
Copyright © 2018. All rights reserved.