All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hudson.plugins.downstream_ext.MatrixTrigger Maven / Gradle / Ivy

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy