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

com.testfabrik.webmate.javasdk.utils.JsonUtils Maven / Gradle / Ivy

There is a newer version: 0.56
Show newest version
package com.testfabrik.webmate.javasdk.utils;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;

public class JsonUtils {

    public static JsonNode getJsonFromData(Object data, JsonInclude.Include... jsonInclude) {
        ObjectMapper mapper = new ObjectMapper();
        for (JsonInclude.Include include : jsonInclude) {
            mapper.setSerializationInclusion(include);
        }
        return mapper.valueToTree(data);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy