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

com.bq.oss.lib.queries.request.CountResult Maven / Gradle / Ivy

package com.bq.oss.lib.queries.request;

/**
 * @author Rubén Carrasco
 *
 */
public class CountResult implements AggregationResult {
	private long count;

	public CountResult() {
	}

	public CountResult(long count) {
		this.count = count;
	}

	public long getCount() {
		return count;
	}

	public void setCount(long count) {
		this.count = count;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy