ref 11720: DataMiner - Update to StorageHUB
https://support.d4science.org/issues/11720 Updated to StorageHub git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/data-miner-manager-cl@171790 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
a4aa0fbe07
commit
87ee731000
|
@ -1,12 +1,12 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<classpath>
|
<classpath>
|
||||||
<classpathentry kind="src" output="target/data-miner-manager-cl-1.4.0-SNAPSHOT/WEB-INF/classes" path="src/main/java">
|
<classpathentry kind="src" output="target/data-miner-manager-cl-1.5.0-SNAPSHOT/WEB-INF/classes" path="src/main/java">
|
||||||
<attributes>
|
<attributes>
|
||||||
<attribute name="optional" value="true"/>
|
<attribute name="optional" value="true"/>
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
</attributes>
|
</attributes>
|
||||||
</classpathentry>
|
</classpathentry>
|
||||||
<classpathentry excluding="**" kind="src" output="target/data-miner-manager-cl-1.4.0-SNAPSHOT/WEB-INF/classes" path="src/main/resources">
|
<classpathentry excluding="**" kind="src" output="target/data-miner-manager-cl-1.5.0-SNAPSHOT/WEB-INF/classes" path="src/main/resources">
|
||||||
<attributes>
|
<attributes>
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
</attributes>
|
</attributes>
|
||||||
|
@ -33,5 +33,5 @@
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
</attributes>
|
</attributes>
|
||||||
</classpathentry>
|
</classpathentry>
|
||||||
<classpathentry kind="output" path="target/data-miner-manager-cl-1.4.0-SNAPSHOT/WEB-INF/classes"/>
|
<classpathentry kind="output" path="target/data-miner-manager-cl-1.5.0-SNAPSHOT/WEB-INF/classes"/>
|
||||||
</classpath>
|
</classpath>
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
<ReleaseNotes>
|
<ReleaseNotes>
|
||||||
|
<Changeset component="${groupId}.${artifactId}.1-5-0"
|
||||||
|
date="2018-10-01">
|
||||||
|
<Change>Updated to support StorageHub[ticket #11720]</Change>
|
||||||
|
</Changeset>
|
||||||
<Changeset component="${groupId}.${artifactId}.1-4-0"
|
<Changeset component="${groupId}.${artifactId}.1-4-0"
|
||||||
date="2018-06-01">
|
date="2018-06-01">
|
||||||
<Change>Updated to support netcdf files</Change>
|
<Change>Updated to support netcdf files</Change>
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
<groupId>org.gcube.data.analysis</groupId>
|
<groupId>org.gcube.data.analysis</groupId>
|
||||||
<artifactId>data-miner-manager-cl</artifactId>
|
<artifactId>data-miner-manager-cl</artifactId>
|
||||||
<version>1.4.0-SNAPSHOT</version>
|
<version>1.5.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<name>data-miner-manager-cl</name>
|
<name>data-miner-manager-cl</name>
|
||||||
<description>DataMiner Manager Client Library</description>
|
<description>DataMiner Manager Client Library</description>
|
||||||
|
|
|
@ -18,6 +18,8 @@ public class ItemDescription implements Serializable {
|
||||||
private String path;
|
private String path;
|
||||||
private String type;
|
private String type;
|
||||||
private String publicLink;
|
private String publicLink;
|
||||||
|
private String mimeType;
|
||||||
|
private String lenght;
|
||||||
|
|
||||||
public ItemDescription() {
|
public ItemDescription() {
|
||||||
super();
|
super();
|
||||||
|
@ -80,6 +82,22 @@ public class ItemDescription implements Serializable {
|
||||||
this.publicLink = 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
|
* Compare basic information with another ItemDescription not null
|
||||||
*
|
*
|
||||||
|
@ -102,7 +120,7 @@ public class ItemDescription implements Serializable {
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "ItemDescription [id=" + id + ", name=" + name + ", owner=" + owner + ", path=" + path + ", type=" + type
|
return "ItemDescription [id=" + id + ", name=" + name + ", owner=" + owner + ", path=" + path + ", type=" + type
|
||||||
+ ", publicLink=" + publicLink + "]";
|
+ ", publicLink=" + publicLink + ", mimeType=" + mimeType + ", lenght=" + lenght + "]";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue