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

hudson.plugins.PerfPublisher.HealthDescriptor Maven / Gradle / Ivy

Go to download

The PerfPublisher plug-in scans for xml tests reports defined in the administration panel and generates trend graphs, computes stats and underline regressions and modifications. The xml files must be generated by your own testing tool.

There is a newer version: 7.97
Show newest version
package hudson.plugins.PerfPublisher;

public class HealthDescriptor {

	private int minHealth;
	private int maxHealth;
	
	private boolean HealthAnalyse;
	
	private int unstableHealth;
	
	public HealthDescriptor() {
		this.maxHealth = 0;
		this.minHealth = 0;
		this.HealthAnalyse = false;
		this.unstableHealth = 0;
	}

	/**
	 * @return the minHealth
	 */
	public int getMinHealth() {
		return minHealth;
	}

	/**
	 * @param minHealth the minHealth to set
	 */
	public void setMinHealth(int minHealth) {
		this.minHealth = minHealth;
	}

	/**
	 * @return the maxHealth
	 */
	public int getMaxHealth() {
		return maxHealth;
	}

	/**
	 * @param maxHealth the maxHealth to set
	 */
	public void setMaxHealth(int maxHealth) {
		this.maxHealth = maxHealth;
	}

	/**
	 * @return the healthAnalyse
	 */
	public boolean isHealthAnalyse() {
		return HealthAnalyse;
	}

	/**
	 * @param healthAnalyse the healthAnalyse to set
	 */
	public void setHealthAnalyse(boolean healthAnalyse) {
		HealthAnalyse = healthAnalyse;
	}

	/**
	 * @return the unstableHealth
	 */
	public int getUnstableHealth() {
		return unstableHealth;
	}

	/**
	 * @param unstableHealth the unstableHealth to set
	 */
	public void setUnstableHealth(int unstableHealth) {
		this.unstableHealth = unstableHealth;
	}
	
	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy