org.mongodb.CommandResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoFS Show documentation
Show all versions of mongoFS Show documentation
An extension to the MongoDB Java Driver library that goes beyond what the GridFS feature supports.
Compressed file storage, zip files, temporary files
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