storagehub/src/main/java/org/gcube/data/access/storagehub/MetaInfo.java

37 lines
532 B
Java

package org.gcube.data.access.storagehub;
public class MetaInfo {
private long size;
private String storageId;
private String remotePath;
public long getSize() {
return size;
}
public void setSize(long size) {
this.size = size;
}
public String getStorageId() {
return storageId;
}
public void setStorageId(String storageId) {
this.storageId = storageId;
}
public String getRemotePath() {
return remotePath;
}
public void setRemotePath(String remotePath) {
this.remotePath = remotePath;
}
}