
gr.iti.mklab.framework.client.search.SearchResponse 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 java.util.ArrayList;
import java.util.List;
/**
*
* @author manosetro - [email protected]
*/
public class SearchResponse {
private List results = new ArrayList();
private List facets = new ArrayList();
private long numFound = 0;
public SearchResponse() {
}
public List getResults() {
return results;
}
public void setResults(List results) {
this.results = results;
}
public List getFacets() {
return facets;
}
public void setFacets(List facets) {
this.facets = facets;
}
public long getNumFound() {
return numFound;
}
public void setNumFound(long numFound) {
this.numFound = numFound;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy