public interface TrashService
Modifier and Type | Method and Description |
---|---|
boolean |
canDelete(List<DocumentModel> docs,
Principal principal,
boolean checkProxies)
Is at least one doc deletable?
|
boolean |
canPurgeOrUndelete(List<DocumentModel> docs,
Principal principal)
Are all documents purgeable/undeletable?
|
boolean |
checkDeletePermOnParents(List<DocumentModel> docs)
Is at least one doc deletable according to its container?
|
boolean |
folderAllowsDelete(DocumentModel folder)
Can a child of the folder be deleted?
|
DocumentModel |
getAboveDocument(DocumentModel doc,
Set<Path> paths)
Gets the closest document's ancestor above all the paths.
|
TrashInfo |
getTrashInfo(List<DocumentModel> docs,
Principal principal,
boolean checkProxies,
boolean checkDeleted)
Gets the trash info for a list of documents.
|
void |
purgeDocuments(CoreSession session,
List<DocumentRef> docRefs)
Purges (completely deletes) documents .
|
void |
trashDocuments(List<DocumentModel> docs)
Moves documents to the trash, or directly deletes them if their lifecycle
does not allow trash use.
|
Set<DocumentRef> |
undeleteDocuments(List<DocumentModel> docs)
Undeletes documents (and ancestors if needed to make them visible).
|
boolean folderAllowsDelete(DocumentModel folder) throws ClientException
folder
- the foldertrue
if the folder allows its children to be deletedClientException
boolean checkDeletePermOnParents(List<DocumentModel> docs) throws ClientException
docs
- the documentstrue
if one doc is in a folder that allows its children
to be deletedClientException
boolean canDelete(List<DocumentModel> docs, Principal principal, boolean checkProxies) throws ClientException
docs
- the documentsprincipal
- the current user (to check locks)checkProxies
- true
to count proxies as non-deletabletrue
if at least one doc is deletableClientException
boolean canPurgeOrUndelete(List<DocumentModel> docs, Principal principal) throws ClientException
Documents need to be in the deleted lifecycle state for this to be true, in addition to the standard permission checks.
docs
- the documentsprincipal
- the current user (to check locks)true
if the documents are purgeable/undeletableClientException
TrashInfo getTrashInfo(List<DocumentModel> docs, Principal principal, boolean checkProxies, boolean checkDeleted) throws ClientException
docs
- the documentsprincipal
- the current user (to check locks)checkProxies
- true
to count proxies as non-deletablecheckDeleted
- true
if documents have to be in the deleted
state to be considered (otherwise forbidden)ClientException
DocumentModel getAboveDocument(DocumentModel doc, Set<Path> paths) throws ClientException
This is used to find what safe document to redirect to when deleting some.
doc
- the documentpaths
- the pathsClientException
void trashDocuments(List<DocumentModel> docs) throws ClientException
docs
- the documents to trashClientException
void purgeDocuments(CoreSession session, List<DocumentRef> docRefs) throws ClientException
session
- the sessiondocRefs
- the documents to purgeClientException
Set<DocumentRef> undeleteDocuments(List<DocumentModel> docs) throws ClientException
Also fires async events to undelete the children.
docs
- the documents to undeleteClientException
Copyright © 2014 Nuxeo SA. All Rights Reserved.