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

com.noenv.wiremongo.mapping.collection.DropCollection Maven / Gradle / Ivy

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

import com.noenv.wiremongo.command.collection.DropCollectionCommand;
import io.vertx.core.json.JsonObject;

public class DropCollection extends WithCollection {

  public DropCollection() {
    super("dropCollection");
  }

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

  @Override
  protected Void parseResponse(Object jsonValue) {
    return null;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy