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

com.noenv.wiremongo.mapping.aggregate.AggregateBase Maven / Gradle / Ivy

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

import com.noenv.wiremongo.command.aggregate.AggregateBaseCommand;
import com.noenv.wiremongo.mapping.stream.WithStreamPipeline;
import io.vertx.core.json.JsonObject;

@SuppressWarnings("squid:MaximumInheritanceDepth")
public abstract class AggregateBase> extends WithStreamPipeline {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy