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

com.noenv.wiremongo.mapping.find.FindBatch Maven / Gradle / Ivy

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

import com.noenv.wiremongo.command.find.FindBatchBaseCommand;
import io.vertx.core.json.JsonObject;

@SuppressWarnings("squid:MaximumInheritanceDepth")
public class FindBatch extends FindBatchBase {

  public FindBatch() {
    this("findBatch");
  }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy