com.noenv.wiremongo.mapping.remove.RemoveDocumentsBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-wiremongo Show documentation
Show all versions of vertx-wiremongo Show documentation
Lightweight mongo mocking for Vert.x
package com.noenv.wiremongo.mapping.remove;
import com.noenv.wiremongo.command.remove.RemoveDocumentsBaseCommand;
import com.noenv.wiremongo.mapping.WithQuery;
import io.vertx.core.json.JsonObject;
import io.vertx.ext.mongo.MongoClientDeleteResult;
public abstract class RemoveDocumentsBase> extends WithQuery {
public RemoveDocumentsBase() {
super("removeDocuments");
}
public RemoveDocumentsBase(String method) {
super(method);
}
public RemoveDocumentsBase(JsonObject json) {
super(json);
}
@Override
protected MongoClientDeleteResult parseResponse(Object jsonValue) {
return new MongoClientDeleteResult((JsonObject) jsonValue);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy