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

com.scaleset.search.mongo.SearchMapping Maven / Gradle / Ivy

There is a newer version: 0.24.0
Show newest version
package com.scaleset.search.mongo;

import com.mongodb.DBObject;
import com.scaleset.search.Query;

public interface SearchMapping {

    String collection(T object) throws Exception;

    String collectionForKey(K key) throws Exception;

    String collectionForQuery(Query query) throws Exception;

    T fromDocument(String id, DBObject doc) throws Exception;

    String id(T obj) throws Exception;

    String idForKey(K key) throws Exception;

    DBObject toDocument(T obj) throws Exception;

    SchemaMapper schemaMapperForQuery(Query query) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy