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

net.serenitybdd.rest.JsonConverter Maven / Gradle / Ivy

There is a newer version: 4.2.9
Show newest version
package net.serenitybdd.rest;

import com.google.gson.JsonParser;
import org.apache.commons.lang3.StringUtils;

/**
 * User: YamStranger
 * Date: 4/15/16
 * Time: 9:14 AM
 */
public class JsonConverter {
    public static String formatted(final String body) {
        if (StringUtils.isEmpty(body)) {
            return "";
        } else {
            return new JsonParser().parse(body).toString();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy