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

com.noenv.wiremongo.mapping.remove.RemoveDocumentsBase Maven / Gradle / Ivy

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