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

com.relevantcodes.extentreports.utils.MongoUtil Maven / Gradle / Ivy

The newest version!
package com.relevantcodes.extentreports.utils;

import org.bson.Document;
import org.bson.types.ObjectId;

public class MongoUtil {
    public static ObjectId getId(Document doc) {
        return (ObjectId) doc.get("_id");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy