Package org.silverpeas.core.cmis.model
Interface Folding
-
- All Superinterfaces:
Fileable
- All Known Implementing Classes:
Application
,CmisFolder
,ContributionFolder
,Publication
,Space
public interface Folding extends Fileable
A file-able CMIS object having the capability to organize others file-able CMIS objects into a subtree of the main CMIS trees object. A folding object can then contains others file-able CMIS object as children.- Author:
- mmoquillon
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<TypeId>
getAllowedChildrenTypes()
Gets all the types this object accepts as children.String
getParentId()
Gets the unique identifier of the folder parent of this oneboolean
isRoot()
Is this object is the root folder in the CMIS objects tree?-
Methods inherited from interface org.silverpeas.core.cmis.model.Fileable
getPath, isOrphaned
-
-
-
-
Method Detail
-
getParentId
String getParentId()
Gets the unique identifier of the folder parent of this one- Specified by:
getParentId
in interfaceFileable
- Returns:
- the unique identifier of the parent of this folding instance or null if it is a root folder.
-
isRoot
boolean isRoot()
Is this object is the root folder in the CMIS objects tree?- Returns:
- true if this folder is the root of the CMIS objects tree. False otherwise.
-
-