![JAR search and dependency download from the Maven repository](/logo.png)
com.lordofthejars.nosqlunit.marklogic.content.PassThroughContent 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 java.io.InputStream;
public class PassThroughContent extends Content {
protected InputStream data;
public PassThroughContent(String uri, InputStream data) {
this.data = data;
setUri(uri);
}
public InputStream content() {
return getData();
}
@Override
public InputStream getData() {
return data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy