add getgCubeMemoryType method to the IClient interface

This commit is contained in:
Roberto Cirillo 2021-09-03 10:36:06 +02:00
parent b12e16eb4b
commit 81b80f1748
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,7 @@
package org.gcube.contentmanagement.blobstorage.service;
import org.gcube.contentmanagement.blobstorage.resource.MemoryType;
import org.gcube.contentmanagement.blobstorage.service.impl.AmbiguousResource;
import org.gcube.contentmanagement.blobstorage.service.impl.LocalResource;
import org.gcube.contentmanagement.blobstorage.service.impl.RemoteResource;
@ -264,4 +265,6 @@ public abstract RemoteResourceBoolean exist();
public abstract RemoteResourceBoolean exist(String backendType);
public MemoryType getGcubeMemoryType();
}