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

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

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

import mesosphere.client.common.ModelUtils;

public class Residency {
	private String taskLostBehaviour;
	private Integer relaunchEscalationTimeoutSeconds;

	public String getTaskLostBehaviour() {
		return taskLostBehaviour;
	}

	public void setTaskLostBehaviour(String taskLostBehaviour) {
		this.taskLostBehaviour = taskLostBehaviour;
	}

	public Integer getRelaunchEscalationTimeoutSeconds() {
		return relaunchEscalationTimeoutSeconds;
	}

	public void setRelaunchEscalationTimeoutSeconds(Integer relaunchEscalationTimeoutSeconds) {
		this.relaunchEscalationTimeoutSeconds = relaunchEscalationTimeoutSeconds;
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy