Files
SCM-Manager/scm-webapp/src/main/java/sonia/scm/plugin/PluginCenterDto.java

111 lines
3.1 KiB
Java
Raw Normal View History

/*
* MIT License
*
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package sonia.scm.plugin;
import com.google.common.collect.ImmutableList;
2019-07-31 16:59:13 +02:00
import lombok.AllArgsConstructor;
import lombok.Getter;
2019-08-20 14:43:48 +02:00
import lombok.NoArgsConstructor;
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;
@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 {
@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 {
private String name;
private String version;
private String displayName;
private String description;
private String category;
private String author;
private String avatarUrl;
2019-11-27 16:37:00 +01:00
private String sha256sum;
@XmlElement(name = "conditions")
private Condition conditions;
2019-08-20 07:53:17 +02:00
@XmlElement(name = "dependencies")
private Set<String> dependencies;
@XmlElement(name = "_links")
2019-07-31 10:27:52 +02:00
private Map<String, Link> links;
}
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "conditions")
@Getter
2019-07-31 16:59:13 +02:00
@AllArgsConstructor
public static class Condition {
private List<String> os;
private String arch;
private String minVersion;
}
2019-07-30 16:49:24 +02:00
@XmlAccessorType(XmlAccessType.FIELD)
@Getter
2019-08-20 14:43:48 +02:00
@NoArgsConstructor
@AllArgsConstructor
2019-07-30 16:49:24 +02:00
static class Link {
2019-07-31 10:27:52 +02:00
private String href;
}
}