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

perfcharts.perftest.parser.perfsummary.PerfSummaryData Maven / Gradle / Ivy

Go to download

Perfcharts is a free software written in Java, which reads performance testing and system monitoring results from Jmeter, NMON, and/or other applications to produce charts for further analysis.

The newest version!
package perfcharts.perftest.parser.perfsummary;

import java.util.Map;

public class PerfSummaryData {
	private Map items;
	private PerfSummaryItem total;
	private int buildId;
	private String buildName;

	public PerfSummaryData() {
	}

	public PerfSummaryData(Map items,
			PerfSummaryItem total) {
		this.items = items;
		this.total = total;
	}

	public Map getItems() {
		return items;
	}

	public void setItems(Map items) {
		this.items = items;
	}

	public PerfSummaryItem getTotal() {
		return total;
	}

	public void setTotal(PerfSummaryItem total) {
		this.total = total;
	}

	public int getBuildId() {
		return buildId;
	}

	public void setBuildId(int buildId) {
		this.buildId = buildId;
	}

	public String getBuildName() {
		return buildName;
	}

	public void setBuildName(String buildName) {
		this.buildName = buildName;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy