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

com.noenv.wiremongo.mapping.bulkwrite.BulkWrite Maven / Gradle / Ivy

There is a newer version: 4.5.10
Show newest version
package com.noenv.wiremongo.mapping.bulkwrite;

import com.noenv.wiremongo.command.bulkwrite.BulkWriteBaseCommand;
import io.vertx.core.json.JsonObject;

public class BulkWrite extends BulkWriteBase {

  public BulkWrite() {
    this("bulkWrite");
  }

  public BulkWrite(String method) {
    super(method);
  }

  public BulkWrite(JsonObject json) {
    super(json);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy