
com.basho.riak.client.api.commands.mapreduce.SearchInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riak-client Show documentation
Show all versions of riak-client Show documentation
HttpClient-based client for Riak
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