hudson.plugins.PerfPublisher.Report.Hardware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of perfpublisher Show documentation
Show all versions of perfpublisher Show documentation
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.
package hudson.plugins.PerfPublisher.Report;
public class Hardware {
private boolean hwa;
private String name;
public Hardware() {
}
public Hardware(boolean hwa, String name) {
super();
this.hwa = hwa;
this.name = name;
}
/**
* @return the hwa
*/
public boolean isHwa() {
return hwa;
}
/**
* @param hwa the hwa to set
*/
public void setHwa(boolean hwa) {
this.hwa = hwa;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
}