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

de.gesellix.couchdb.model.MapWithRowReference Maven / Gradle / Ivy

package de.gesellix.couchdb.model;

import java.util.HashMap;
import java.util.Map;

public abstract class MapWithRowReference extends HashMap implements RowReference {

  public MapWithRowReference(Map delegate) {
    super(delegate);
  }

  @Override
  public String getDocId() {
    return null;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy