![JAR search and dependency download from the Maven repository](/logo.png)
mesosphere.client.common.ModelUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marathon-client Show documentation
Show all versions of marathon-client Show documentation
A Java API client for Mesosphere's Marathon.
package mesosphere.client.common;
import mesosphere.dcos.client.model.ListSecretsResponse;
import mesosphere.marathon.client.model.v2.Volume;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
public class ModelUtils {
public static final Gson GSON = new GsonBuilder().setPrettyPrinting()
.disableHtmlEscaping().registerTypeAdapter(Volume.class, new Volume.VolumeAdapter()).registerTypeAdapter(ListSecretsResponse.class, new ListSecretsResponse.ListSecretsResponseAdapter()).create();
public static String toString(Object o) {
return GSON.toJson(o);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy