ru.qatools.mongodb.Deserializer Maven / Gradle / Ivy
package ru.qatools.mongodb;
import org.bson.Document;
/**
* @author Ilya Sadykov
*/
public interface Deserializer {
/**
* Deserialize the input document into object
*/
T fromDBObject(Document input, Class expectedClass) throws Exception; //NOSONAR
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy