com.browseengine.bobo.mapred.MapReduceResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bobo-browse Show documentation
Show all versions of bobo-browse Show documentation
Bobo is a Faceted Search implementation written purely in Java, an extension of Apache Lucene
The newest version!
package com.browseengine.bobo.mapred;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
/**
* Keeps the map reduce results
*
*/
@SuppressWarnings("rawtypes")
public class MapReduceResult implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
protected List mapResults = new ArrayList(200);
protected Serializable reduceResult;
public List getMapResults() {
return mapResults;
}
public MapReduceResult setMapResults(List mapResults) {
this.mapResults = mapResults;
return this;
}
public Serializable getReduceResult() {
return reduceResult;
}
public MapReduceResult setReduceResult(Serializable reduceResult) {
this.reduceResult = reduceResult;
return this;
}
}