Interface IFolderInfo
-
@Scriptable public interface IFolderInfo
Provides information about a MS Exchange folder.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getContentClass()
String
getDisplayName()
String
getHref()
String
getId()
String
getParentName()
boolean
hasSubFolders()
boolean
isFolder()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- The ID
-
getDisplayName
String getDisplayName()
- Returns:
- The DisplayName.
-
getHref
String getHref()
- Returns:
- The HREF.
-
getParentName
String getParentName()
- Returns:
- The ParentName.
-
getContentClass
String getContentClass()
- Returns:
- The ContentClass.
-
isFolder
boolean isFolder()
- Returns:
- True if item is a folder.
-
hasSubFolders
boolean hasSubFolders()
- Returns:
- True if item has sub folders.
-
-