io.higgs.http.server.resource.JsonData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-s3 Show documentation
Show all versions of http-s3 Show documentation
Higgs HTTP S3 (Single Site Server)
package io.higgs.http.server.resource;
import com.fasterxml.jackson.databind.JsonNode;
/**
* @author Courtney Robinson
*/
public class JsonData {
protected final JsonNode node;
protected final String json;
public JsonData(String json, JsonNode node) {
this.json = json;
this.node = node;
}
public JsonNode getNode() {
return node;
}
public String getJson() {
return json;
}
@Override
public String toString() {
return json;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy