
gr.iti.mklab.framework.client.search.Bucket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mklab-framework-client Show documentation
Show all versions of mklab-framework-client Show documentation
The project contains a set of convenience methods on top of common data repositories.
The newest version!
package gr.iti.mklab.framework.client.search;
import gr.iti.mklab.framework.common.domain.JSONable;
/**
*
* @author Manos Schinas
*
*/
public class Bucket extends JSONable {
/**
*
*/
private static final long serialVersionUID = 9024691192712839896L;
private String name;
private long count;
private String query;
public Bucket() {
}
public Bucket(String name, long count, String query) {
this.name = name;
this.count = count;
this.query = query;
}
public long getCount() {
return count;
}
public void setCount(long count) {
this.count = count;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getQuery() {
return query;
}
public void setQuery(String query) {
this.query = query;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy