com.scaleset.search.mongo.SchemaMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scaleset-search-mongo Show documentation
Show all versions of scaleset-search-mongo Show documentation
Java object model for representing query requests in REST protocols.
package com.scaleset.search.mongo;
import java.util.List;
public interface SchemaMapper {
List mapField(String field);
Object mapValue(String field, Object value);
String defaultField();
}