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

mesosphere.marathon.client.utils.ModelUtils Maven / Gradle / Ivy

There is a newer version: 0.4.9
Show newest version
package mesosphere.marathon.client.utils;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

public class ModelUtils {
	public static final Gson GSON = new GsonBuilder().setPrettyPrinting()
			.disableHtmlEscaping().create();

	public static String toString(Object o) {
		return GSON.toJson(o);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy