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

gr.iti.mklab.framework.client.search.SearchResponse Maven / Gradle / Ivy

Go to download

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