Uses of Class
hudson.triggers.Trigger
-
Packages that use Trigger Package Description 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 jenkins.triggers -
-
Uses of Trigger in hudson.model
Fields in hudson.model with type parameters of type Trigger Modifier and Type Field Description protected DescribableList<Trigger<?>,TriggerDescriptor>
AbstractProject. triggers
List of allTrigger
s for this project.Methods in hudson.model with type parameters of type Trigger Modifier and Type Method Description <T extends Trigger>
TAbstractProject. getTrigger(Class<T> clazz)
Gets the specific trigger, or null if the property is not configured for this job.Methods in hudson.model that return types with arguments of type Trigger Modifier and Type Method Description Map<TriggerDescriptor,Trigger<?>>
AbstractProject. getTriggers()
protected DescribableList<Trigger<?>,TriggerDescriptor>
AbstractProject. triggers()
Methods in hudson.model with parameters of type Trigger Modifier and Type Method Description void
AbstractProject. addTrigger(Trigger<?> trigger)
-
Uses of Trigger in hudson.triggers
Subclasses of Trigger in hudson.triggers Modifier and Type Class Description class
SCMTrigger
Trigger
that checks for SCM updates periodically.class
TimerTrigger
Trigger
that runs a job periodically.Methods in hudson.triggers that return types with arguments of type Trigger Modifier and Type Method Description static DescriptorExtensionList<Trigger<?>,TriggerDescriptor>
Trigger. all()
Returns all the registeredTrigger
descriptors.Constructor parameters in hudson.triggers with type arguments of type Trigger Constructor Description TriggerDescriptor(Class<? extends Trigger<?>> clazz)
-
Uses of Trigger in jenkins.model
Methods in jenkins.model with type parameters of type Trigger Modifier and Type Method Description static <T extends Trigger<?>>
TParameterizedJobMixIn. getTrigger(Job<?,?> job, Class<T> clazz)
Checks for the existence of a specific trigger on a job. -
Uses of Trigger in jenkins.triggers
Subclasses of Trigger in jenkins.triggers Modifier and Type Class Description class
ReverseBuildTrigger
LikeBuildTrigger
but defined on the downstream project.Methods in jenkins.triggers that return types with arguments of type Trigger Modifier and Type Method Description Map<TriggerDescriptor,Trigger<?>>
TriggeredItem. getTriggers()
Gets currently configured triggers.
-