![JAR search and dependency download from the Maven repository](/logo.png)
mesosphere.metronome.client.model.v1.Artifact 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.metronome.client.model.v1;
import mesosphere.client.common.ModelUtils;
public class Artifact {
private String uri;
private Boolean executable;
private Boolean extract;
private Boolean cache;
public String getUri() {
return uri;
}
public void setUri(String uri) {
this.uri = uri;
}
public Boolean getExecutable() {
return executable;
}
public void setExecutable(Boolean executable) {
this.executable = executable;
}
public Boolean getExtract() {
return extract;
}
public void setExtract(Boolean extract) {
this.extract = extract;
}
public Boolean getCache() {
return cache;
}
public void setCache(Boolean cache) {
this.cache = cache;
}
@Override
public String toString() {
return ModelUtils.toString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy