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

org.mongodb.CommandResult Maven / Gradle / Ivy

Go to download

An extension to the MongoDB Java Driver library that goes beyond what the GridFS feature supports. Compressed file storage, zip files, temporary files

There is a newer version: 0.10.0
Show newest version
package org.mongodb;

public class CommandResult {

    private com.mongodb.CommandResult surrogate;

    public CommandResult(final com.mongodb.CommandResult command) {
        this.surrogate = command;
    }

    public Document getResponse() {
        return new Document(surrogate);
    }

    public boolean isOk() {
        return surrogate.ok();
    }

    public String getErrorMessage() {
        return surrogate.getErrorMessage();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy