fr.ght1pc9kc.testy.mongo.MongoDataSet Maven / Gradle / Ivy
The newest version!
package fr.ght1pc9kc.testy.mongo;
import java.util.List;
/**
* Set of documents used to initialize a collection with data.
*
* @param Type of the elements to insert as documents.
*/
@FunctionalInterface
public interface MongoDataSet {
/**
* Obtain the documents to insert.
*
* @return Documents to insert into the collection.
*/
List documents();
default String identifier() {
return "_id";
}
}