hudson.plugins.downstream_ext.MatrixTrigger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of downstream-ext Show documentation
Show all versions of downstream-ext Show documentation
This plugin provides advanced options for triggering downstream builds.
The newest version!
package hudson.plugins.downstream_ext;
public enum MatrixTrigger {
ONLY_PARENT("Trigger only the parent job"),
ONLY_CONFIGURATIONS("Trigger for each configuration"),
BOTH("Trigger for parent and each configuration");
private final String description;
private MatrixTrigger(String description) {
this.description = description;
}
public String getDescription() {
return description;
}
}