de.gesellix.couchdb.model.MapWithDocumentId Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy