diff --git a/.classpath b/.classpath index 02d755f..e87016c 100644 --- a/.classpath +++ b/.classpath @@ -1,12 +1,12 @@ - + - + @@ -33,5 +33,5 @@ - + diff --git a/distro/changelog.xml b/distro/changelog.xml index 2d71883..7749855 100644 --- a/distro/changelog.xml +++ b/distro/changelog.xml @@ -1,4 +1,8 @@ + + Updated to support StorageHub[ticket #11720] + Updated to support netcdf files diff --git a/pom.xml b/pom.xml index f430ed4..b3f44ba 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ org.gcube.data.analysis data-miner-manager-cl - 1.4.0-SNAPSHOT + 1.5.0-SNAPSHOT data-miner-manager-cl DataMiner Manager Client Library diff --git a/src/main/java/org/gcube/data/analysis/dataminermanagercl/shared/workspace/ItemDescription.java b/src/main/java/org/gcube/data/analysis/dataminermanagercl/shared/workspace/ItemDescription.java index 6e5bcfd..1984a48 100644 --- a/src/main/java/org/gcube/data/analysis/dataminermanagercl/shared/workspace/ItemDescription.java +++ b/src/main/java/org/gcube/data/analysis/dataminermanagercl/shared/workspace/ItemDescription.java @@ -18,6 +18,8 @@ public class ItemDescription implements Serializable { private String path; private String type; private String publicLink; + private String mimeType; + private String lenght; public ItemDescription() { super(); @@ -79,6 +81,22 @@ public class ItemDescription implements Serializable { public void setPublicLink(String publicLink) { this.publicLink = publicLink; } + + public String getMimeType() { + return mimeType; + } + + public void setMimeType(String mimeType) { + this.mimeType = mimeType; + } + + public String getLenght() { + return lenght; + } + + public void setLenght(String lenght) { + this.lenght = lenght; + } /** * Compare basic information with another ItemDescription not null @@ -102,7 +120,7 @@ public class ItemDescription implements Serializable { @Override public String toString() { return "ItemDescription [id=" + id + ", name=" + name + ", owner=" + owner + ", path=" + path + ", type=" + type - + ", publicLink=" + publicLink + "]"; + + ", publicLink=" + publicLink + ", mimeType=" + mimeType + ", lenght=" + lenght + "]"; } }