Package org.nuxeo.ecm.core.trash
Class TrashInfo
- java.lang.Object
-
- org.nuxeo.ecm.core.trash.TrashInfo
-
- All Implemented Interfaces:
Serializable
public class TrashInfo extends Object implements Serializable
Info about the deletion/purge/undeletion of a list of document.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description List<DocumentModel>docsDocs found ok.intforbiddenNumber of docs not ok due to permissions or lifecycle state.intlockedNumber of docs not ok due to lock status.intproxiesNumber of docs not ok due to being proxies.Set<DocumentRef>rootParentRefsRefs of parents of common tree roots of docs found ok.Set<Path>rootPathsPaths of common tree roots of docs found ok.List<DocumentRef>rootRefsRefs of common tree roots of docs found ok.
-
Constructor Summary
Constructors Constructor Description TrashInfo()
-
-
-
Field Detail
-
docs
public List<DocumentModel> docs
Docs found ok.
-
rootRefs
public List<DocumentRef> rootRefs
Refs of common tree roots of docs found ok.
-
rootParentRefs
public Set<DocumentRef> rootParentRefs
Refs of parents of common tree roots of docs found ok.
-
forbidden
public int forbidden
Number of docs not ok due to permissions or lifecycle state.
-
locked
public int locked
Number of docs not ok due to lock status.
-
proxies
public int proxies
Number of docs not ok due to being proxies.
-
-