From 05634834fef68536bcb79e16deb8fb6fc5ceec43 Mon Sep 17 00:00:00 2001 From: "francesco.mangiacrapa" Date: Wed, 26 Apr 2023 15:05:06 +0200 Subject: [PATCH] Added 'ignore_errors' --- .../org/gcube/application/geoportal/common/rest/Projects.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geoportal-common/src/main/java/org/gcube/application/geoportal/common/rest/Projects.java b/geoportal-common/src/main/java/org/gcube/application/geoportal/common/rest/Projects.java index 76ccb03..df02750 100644 --- a/geoportal-common/src/main/java/org/gcube/application/geoportal/common/rest/Projects.java +++ b/geoportal-common/src/main/java/org/gcube/application/geoportal/common/rest/Projects.java @@ -44,7 +44,7 @@ public interface Projects

{ //FileSets public P registerFileSet(String id, RegisterFileSetRequest req) throws RemoteException, InvalidRequestException; //FileSets - public P deleteFileSet(String id, String path, Boolean force) throws RemoteException; + public P deleteFileSet(String id, String path, Boolean force, Boolean ignore_errors) throws RemoteException; public P forceUnlock(String id) throws RemoteException; public P setAccessPolicy(String id, Access toSet) throws RemoteException;