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

com.basho.riak.client.api.commands.mapreduce.SearchInput Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.basho.riak.client.api.commands.mapreduce;

public class SearchInput implements MapReduceInput
{
	private final String index;
	private final String search;

	public SearchInput(String index, String search)
	{
		this.index = index;
		this.search = search;
	}

	public String getIndex()
	{
		return index;
	}

	public String getSearch()
	{
		return search;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy