storagehub-client-library/src/main/java/org/gcube/common/storagehub/client/dsl/ListRetriever.java

12 lines
370 B
Java

package org.gcube.common.storagehub.client.dsl;
import java.util.List;
import org.gcube.common.storagehub.model.exceptions.StorageHubException;
import org.gcube.common.storagehub.model.items.Item;
public interface ListRetriever {
List<? extends Item> getList(Class<? extends Item> onlyType, boolean includeHidden, String ... excludes) throws StorageHubException;
}