mesosphere.marathon.client.model.v2.Delay 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.
The newest version!
package mesosphere.marathon.client.model.v2;
public class Delay {
private boolean overdue;
private int timeLeftSeconds;
public int getTimeLeftSeconds() {
return timeLeftSeconds;
}
public void setTimeLeftSeconds(int timeLeftSeconds) {
this.timeLeftSeconds = timeLeftSeconds;
}
public boolean isOverdue() {
return overdue;
}
public void setOverdue(boolean overdue) {
this.overdue = overdue;
}
}