com.noenv.wiremongo.mapping.index.CreateIndex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-wiremongo Show documentation
Show all versions of vertx-wiremongo Show documentation
Lightweight mongo mocking for Vert.x
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);
}
}