Uses of Class
hudson.model.Cause
-
Packages that use Cause Package Description hudson.cli Server-side CLI commands for Hudson.hudson.model Core object model that are bound to URLs via stapler, rooted atJenkins
.hudson.triggers Built-inTrigger
s that run periodically to kick a new build.jenkins.model -
-
Uses of Cause in hudson.cli
Subclasses of Cause in hudson.cli Modifier and Type Class Description static class
BuildCommand.CLICause
-
Uses of Cause in hudson.model
Subclasses of Cause in hudson.model Modifier and Type Class Description static class
Cause.LegacyCodeCause
Deprecated.since 2009-02-08static 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 useCause.UserIdCause
static class
Cause.UserIdCause
A build is started by an user action.Methods in hudson.model with type parameters of type Cause Modifier and Type Method Description <T extends Cause>
TCauseAction. findCause(Class<T> type)
Finds the cause of the specific type.<T extends Cause>
TRun. getCause(Class<T> type)
Returns aCause
of a particular type.Methods in hudson.model that return types with arguments of type Cause Modifier and Type Method 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>
Queue.Item. getCauses()
Convenience method that returns a read only view of theCause
s associated with this item in the queue.List<Cause>
Run. getCauses()
Returns theCause
s that triggered a build.List<Cause>
Cause.UpstreamCause. getUpstreamCauses()
Methods in hudson.model with parameters of type Cause Modifier and Type Method Description boolean
AbstractProject. scheduleBuild(int quietPeriod, Cause c, Action... actions)
Schedules a build.boolean
BuildableItem. scheduleBuild(int quietPeriod, Cause c)
boolean
BuildableItem. scheduleBuild(Cause c)
QueueTaskFuture<R>
AbstractProject. scheduleBuild2(int quietPeriod, Cause c)
Schedules a build of this project, and returns aFuture
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 aFuture
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 aFuture
object to wait for the completion of the build.Method parameters in hudson.model with type arguments of type Cause Modifier and Type Method Description default void
BuildListener. started(List<Cause> causes)
Called when a build is started.Constructors in hudson.model with parameters of type Cause Constructor Description CauseAction(Cause c)
CauseAction(Cause... c)
Constructor parameters in hudson.model with type arguments of type Cause Constructor Description CauseAction(Collection<? extends Cause> causes)
-
Uses of Cause in hudson.triggers
Subclasses of Cause in hudson.triggers Modifier and Type Class Description static class
SCMTrigger.SCMTriggerCause
static class
TimerTrigger.TimerTriggerCause
-
Uses of Cause in jenkins.model
Methods in jenkins.model with parameters of type Cause Modifier and Type Method Description default boolean
ParameterizedJobMixIn.ParameterizedJob. scheduleBuild(int quietPeriod, Cause c)
default boolean
ParameterizedJobMixIn.ParameterizedJob. scheduleBuild(Cause c)
boolean
ParameterizedJobMixIn. scheduleBuild(int quietPeriod, Cause c)
boolean
ParameterizedJobMixIn. scheduleBuild(Cause c)
-