2019-08-15 17:01:15 +02:00
|
|
|
package sonia.scm.plugin;
|
2019-07-26 13:04:54 +02:00
|
|
|
|
|
|
|
|
import com.google.common.collect.ImmutableList;
|
2019-07-31 16:59:13 +02:00
|
|
|
import lombok.AllArgsConstructor;
|
2019-07-26 13:04:54 +02:00
|
|
|
import lombok.Getter;
|
|
|
|
|
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
|
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
import java.util.List;
|
2019-07-30 16:49:24 +02:00
|
|
|
import java.util.Map;
|
2019-08-20 07:53:17 +02:00
|
|
|
import java.util.Set;
|
2019-07-26 13:04:54 +02:00
|
|
|
|
|
|
|
|
@XmlRootElement
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
public final class PluginCenterDto implements Serializable {
|
|
|
|
|
|
|
|
|
|
@XmlElement(name = "_embedded")
|
|
|
|
|
private Embedded embedded;
|
|
|
|
|
|
|
|
|
|
public Embedded getEmbedded() {
|
|
|
|
|
return embedded;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@XmlRootElement(name = "_embedded")
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
2019-07-31 16:59:13 +02:00
|
|
|
public static class Embedded {
|
2019-07-26 13:04:54 +02:00
|
|
|
|
|
|
|
|
@XmlElement(name = "plugins")
|
|
|
|
|
private List<Plugin> plugins;
|
|
|
|
|
|
|
|
|
|
public List<Plugin> getPlugins() {
|
|
|
|
|
if (plugins == null) {
|
|
|
|
|
plugins = ImmutableList.of();
|
|
|
|
|
}
|
|
|
|
|
return plugins;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
@XmlRootElement(name = "plugins")
|
|
|
|
|
@Getter
|
2019-07-31 16:59:13 +02:00
|
|
|
@AllArgsConstructor
|
|
|
|
|
public static class Plugin {
|
2019-07-26 13:04:54 +02:00
|
|
|
|
|
|
|
|
private String name;
|
2019-08-15 17:01:15 +02:00
|
|
|
private String version;
|
2019-07-26 13:04:54 +02:00
|
|
|
private String displayName;
|
|
|
|
|
private String description;
|
|
|
|
|
private String category;
|
|
|
|
|
private String author;
|
2019-08-12 11:16:47 +02:00
|
|
|
private String avatarUrl;
|
2019-07-26 13:04:54 +02:00
|
|
|
private String sha256;
|
|
|
|
|
|
|
|
|
|
@XmlElement(name = "conditions")
|
|
|
|
|
private Condition conditions;
|
|
|
|
|
|
2019-08-20 07:53:17 +02:00
|
|
|
@XmlElement(name = "dependencies")
|
|
|
|
|
private Set<String> dependencies;
|
2019-07-26 13:04:54 +02:00
|
|
|
|
|
|
|
|
@XmlElement(name = "_links")
|
2019-07-31 10:27:52 +02:00
|
|
|
private Map<String, Link> links;
|
2019-07-26 13:04:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
@XmlRootElement(name = "conditions")
|
|
|
|
|
@Getter
|
2019-07-31 16:59:13 +02:00
|
|
|
@AllArgsConstructor
|
|
|
|
|
public static class Condition {
|
2019-07-26 13:04:54 +02:00
|
|
|
|
2019-08-12 11:16:47 +02:00
|
|
|
private List<String> os;
|
2019-07-26 13:04:54 +02:00
|
|
|
private String arch;
|
|
|
|
|
private String minVersion;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-30 16:49:24 +02:00
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
@Getter
|
|
|
|
|
static class Link {
|
2019-07-31 10:27:52 +02:00
|
|
|
private String href;
|
2019-07-26 13:04:54 +02:00
|
|
|
}
|
|
|
|
|
}
|