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

net.anotheria.moskito.extensions.sampling.Sample Maven / Gradle / Ivy

The newest version!
package net.anotheria.moskito.extensions.sampling;

import java.util.Map;

/**
 * TODO comment this class
 *
 * @author lrosenberg
 * @since 24.04.15 18:02
 */
public class Sample {
	private String producerId;
	private String statMapperId;
	private Map values;

	public String getProducerId() {
		return producerId;
	}

	public void setProducerId(String producerId) {
		this.producerId = producerId;
	}

	public String getStatMapperId() {
		return statMapperId;
	}

	public void setStatMapperId(String statMapperId) {
		this.statMapperId = statMapperId;
	}

	public Map getValues() {
		return values;
	}

	public void setValues(Map values) {
		this.values = values;
	}

	@Override
	public String toString() {
		return "Sample{" +
				"producerId='" + producerId + '\'' +
				", statMapperId='" + statMapperId + '\'' +
				", values=" + values +
				'}';
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy