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

com.browseengine.bobo.mapred.MapReduceResult Maven / Gradle / Ivy

Go to download

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;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy