Added empty trash API

master
Luca Frosini 2 years ago
parent 87d484f38b
commit 81ebbbc4b8

@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Added query parameter social_post_notification to override default VRE behaviour [#21345]
- Added support for moderation [#21342]
- Added items bulk delete/purge [#21685]
- Added empty trash API [#13322]
## [v2.0.0]

@ -0,0 +1,13 @@
package org.gcube.gcat.api.interfaces;
import javax.xml.ws.WebServiceException;
public interface Trash<R> {
public static final String TRASH = "trash";
public String list(Boolean ownOnly) throws WebServiceException;
public R empty(Boolean ownOnly) throws WebServiceException;
}
Loading…
Cancel
Save