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

com.noenv.wiremongo.command.collection.WithCollectionCommand Maven / Gradle / Ivy

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

import com.noenv.wiremongo.command.CommandBase;

public abstract class WithCollectionCommand extends CommandBase {

  private final String collection;

  public WithCollectionCommand(String method, String collection) {
    super(method);
    this.collection = collection;
  }

  public String getCollection() {
    return collection;
  }

  @Override
  public String toString() {
    return super.toString() + ", collection: " + collection;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy