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.


Field Summary
 
Fields inherited from interface com.softwareag.centrasite.api.csom.repository.CentraSiteRepositoryObject
SUPPORTING_DOC_LOCATION
 
Method Summary
 java.util.List<CentraSiteRepositoryFile> getFiles()
          Return the files nested directly under this folder
 java.util.List<CentraSiteRepositoryFolder> getFolders()
          Return the folders nested directly under this folder
 
Methods inherited from interface com.softwareag.centrasite.api.csom.repository.CentraSiteRepositoryObject
exists, isFolder
 
Methods inherited from interface com.softwareag.centrasite.api.csom.repository.CentraSiteFile
getDescription, getDisplayURI, getName, getURI, isExternal, setDescription, setName, setURI
 
Methods inherited from interface com.softwareag.centrasite.api.csom.CentraSiteObject
delete, getAttributeLink, getAttributeValue, getAttributeValue, getAttributeValue, getId, getType, isModified, isReadOnly, save, setAttributeValue, setAttributeValue, setAttributeValue
 

Method Detail

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.