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

com.noenv.wiremongo.mapping.index.CreateIndex Maven / Gradle / Ivy

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

import com.noenv.wiremongo.command.index.CreateIndexBaseCommand;
import io.vertx.core.json.JsonObject;

public class CreateIndex extends CreateIndexBase {

  public CreateIndex() {
    this("createIndex");
  }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy