com.labstack.Document Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of labstack-java Show documentation
Show all versions of labstack-java Show documentation
Official Java client library for the LabStack REST API
The newest version!
package com.labstack;
import javax.print.Doc;
import java.util.HashMap;
import java.util.Map;
public class Document {
protected Map data = new HashMap<>();
public Document add(String key, Object value) {
data.put(key, value);
return this;
}
public Object get(String key) {
return data.get(key);
}
// TODO: More public access methods http://mongodb.github.io/mongo-java-driver/3.4/javadoc/org/bson/Document.html
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy