diff --git a/src/main/java/org/gcube/data/transfer/model/plugins/ThreddsCatalogDescriptor.java b/src/main/java/org/gcube/data/transfer/model/plugins/ThreddsCatalogDescriptor.java new file mode 100644 index 0000000..dd6ecf6 --- /dev/null +++ b/src/main/java/org/gcube/data/transfer/model/plugins/ThreddsCatalogDescriptor.java @@ -0,0 +1,28 @@ +package org.gcube.data.transfer.model.plugins; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import lombok.ToString; + +@Getter +@Setter +@ToString +@NoArgsConstructor +@AllArgsConstructor +@XmlRootElement +@XmlAccessorType(XmlAccessType.FIELD) +public class ThreddsCatalogDescriptor { + + private String ID; + private String name; + private String title; + private String catalogFile; + private String catalogEndpoint; + private String catalogConfigurationFileUrl; +}