mesosphere.marathon.client.model.v2.GetAppNamespaceResponse 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.marathon.client.model.v2;
import mesosphere.client.common.ModelUtils;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class GetAppNamespaceResponse {
@SerializedName("*")
private List apps;
public List getApps() {
return apps;
}
public void setApps(List apps) {
this.apps = apps;
}
@Override
public String toString() {
return ModelUtils.toString(this);
}
}