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; } }