mesosphere.marathon.client.model.v2.Plugin 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.marathon.client.model.v2;
import java.util.List;
import mesosphere.client.common.ModelUtils;
public class Plugin {
private String id;
private String implementation;
private Info info;
private String plugin;
private List tags;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getImplementation() {
return implementation;
}
public void setImplementation(String implementation) {
this.implementation = implementation;
}
public Info getInfo() {
return info;
}
public void setInfo(Info info) {
this.info = info;
}
public String getPlugin() {
return plugin;
}
public void setPlugin(String plugin) {
this.plugin = plugin;
}
public List getTags() {
return tags;
}
public void setTags(List tags) {
this.tags = tags;
}
public static class Info {
private String version;
private List