Fabio Sinibaldi 2018-02-05 16:10:30 +00:00
parent bc3739894b
commit 30f0480cf5
2 changed files with 4 additions and 1 deletions

View File

@ -8,7 +8,7 @@
</parent>
<groupId>org.gcube.data.transfer</groupId>
<artifactId>data-transfer-model</artifactId>
<version>1.2.3-SNAPSHOT</version>
<version>1.2.4-SNAPSHOT</version>
<name>Data Transfer Model</name>
<description>Common model used by Data Transfer Service facilities</description>

View File

@ -1,5 +1,7 @@
package org.gcube.data.transfer.model;
import java.util.ArrayList;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
@ -26,4 +28,5 @@ public class RemoteFileDescriptor {
private long lastUpdate;
private long size;
private ArrayList<String> children;
}