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

mesosphere.marathon.client.model.v2.DeleteAppTasksResponse Maven / Gradle / Ivy

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

import java.util.Collection;

import mesosphere.marathon.client.utils.ModelUtils;

public class DeleteAppTasksResponse {
	private Collection tasks;

	public Collection getTasks() {
		return tasks;
	}

	public void setTasks(Collection tasks) {
		this.tasks = tasks;
	}

	@Override
	public String toString() {
		return ModelUtils.toString(this);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy