All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.higgs.http.server.resource.JsonData Maven / Gradle / Ivy

There is a newer version: 0.0.24
Show newest version
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