![JAR search and dependency download from the Maven repository](/logo.png)
com.lordofthejars.nosqlunit.marklogic.content.JsonContents Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nosqlunit-marklogic Show documentation
Show all versions of nosqlunit-marklogic Show documentation
NoSQLUnit adapter for MarkLogic
The newest version!
package com.lordofthejars.nosqlunit.marklogic.content;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import java.util.HashMap;
import java.util.Map;
/**
* The wrapper class for JSON data sets.
*/
public class JsonContents {
private Map contents = new HashMap<>();
@JsonAnyGetter
public Map getContents() {
return contents;
}
@JsonAnySetter
public void addContent(String uri, JsonContent content) {
contents.put(uri, content);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy