added methdo to ScriptUtil

master
Lucio Lelii 1 year ago
parent 0460bc4e69
commit 9c1ac09058

@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [v1.0.1-SNAPSHOT] - [2022-09-28]
update
## [v1.0.0] - [2021-05-04]
First commit

@ -1,5 +1,6 @@
package org.gcube.data.access.storagehub.scripting;
import java.util.Collection;
import java.util.List;
import java.util.function.Predicate;
@ -10,6 +11,7 @@ import javax.jcr.Session;
import org.gcube.common.storagehub.model.exceptions.BackendGenericError;
import org.gcube.common.storagehub.model.exceptions.StorageHubException;
import org.gcube.common.storagehub.model.items.Item;
import org.gcube.common.storagehub.model.storages.StorageBackendFactory;
public interface ScriptUtil {
@ -19,6 +21,5 @@ public interface ScriptUtil {
void removeNodes(Session ses, List<Item> itemsToDelete) throws RepositoryException, StorageHubException;
Collection<StorageBackendFactory> getStorageBackendHandler();
}

Loading…
Cancel
Save