
gr.iti.mklab.framework.client.search.Facet 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;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author Manos Schinas - [email protected]
*/
public class Facet extends JSONable {
/**
*
*/
private static final long serialVersionUID = -7222978342717761726L;
String name;
List buckets = new ArrayList();
public List getBuckets() {
return buckets;
}
public void setBuckets(List buckets) {
this.buckets = buckets;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy