![JAR search and dependency download from the Maven repository](/logo.png)
mesosphere.dcos.client.model.Secret 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.dcos.client.model;
import mesosphere.client.common.ModelUtils;
import java.util.List;
public class Secret {
private String author;
private String created;
private String description;
private List labels;
private String value;
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getCreated() {
return created;
}
public void setCreated(String created) {
this.created = created;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public List getLabels() {
return labels;
}
public void setLabels(List labels) {
this.labels = labels;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
@Override
public String toString() {
return ModelUtils.toString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy