Force Deletion

This commit is contained in:
Fabio Sinibaldi 2021-08-03 12:39:26 +02:00
parent ebd1b2c5c1
commit 3408e3e9a4
2 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@ public interface MongoConcessioni {
public Concessione createNew(Concessione c) throws Exception;
public void deleteById(String id) throws Exception;
public void deleteById(String id,Boolean force) throws Exception;
public Concessione getById(String id) throws Exception;
public Iterator<Concessione> getList()throws Exception;
public Concessione publish(String id) throws Exception;

View File

@ -15,4 +15,5 @@ public interface ProjectsI {
public Project registrNew(String profileId, String jsonDocument)throws Exception;
public Project update(String profileId, String projectId,String jsonDocument) throws Exception;
public void deleteById(String profileId, String projectId)throws Exception;
public void deleteById(String profileId, String projectId, Boolean force)throws Exception;
}