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

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

The newest version!
package de.gesellix.couchdb.model;

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

public class MapWithDocumentId extends HashMap implements DocumentId {

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

  @Override
  public String getId() {
    return (String) get("_id");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy