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

com.noenv.wiremongo.command.update.UpdateCollectionBaseCommand Maven / Gradle / Ivy

There is a newer version: 4.5.10
Show newest version
package com.noenv.wiremongo.command.update;

import io.vertx.core.json.JsonObject;

public class UpdateCollectionBaseCommand extends WithUpdateCommand {

  public UpdateCollectionBaseCommand(String collection, JsonObject query, T update) {
    this("updateCollection", collection, query, update);
  }

  public UpdateCollectionBaseCommand(String method, String collection, JsonObject query, T update) {
    super(method, collection, query, update);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy