com.softwareag.centrasite.api.csom.repository
Interface CentraSiteRepositoryFolder
- All Superinterfaces:
- CentraSiteFile, CentraSiteObject, CentraSiteRepositoryObject
public interface CentraSiteRepositoryFolder
- extends CentraSiteRepositoryObject
CentraSiteRepositoryFolder which represents a physical folder in the
repository through which which can access it's sub folders and files.
Methods inherited from interface com.softwareag.centrasite.api.csom.CentraSiteObject |
delete, getAttributeLink, getAttributeValue, getAttributeValue, getAttributeValue, getId, getType, isModified, isReadOnly, save, setAttributeValue, setAttributeValue, setAttributeValue |
getFolders
java.util.List<CentraSiteRepositoryFolder> getFolders()
throws CLLException
- Return the folders nested directly under this folder
- Returns:
- the folders nested directly under this folder , in case no
folders exists in the given folder then return empty.
- Throws:
CLLException
- in case of failed to get the nested folders
getFiles
java.util.List<CentraSiteRepositoryFile> getFiles()
throws CLLException
- Return the files nested directly under this folder
- Returns:
- the files nested directly under this folder , in case no files
exists in the given folder then return empty.
- Throws:
CLLException
- in case of failed to get the nested files.