Class IManageFolderJson
- java.lang.Object
-
- com.blackberry.workspaces.api.sdk.json.BaseJson
-
- com.blackberry.workspaces.api.sdk.json.IManageFolderJson
-
- All Implemented Interfaces:
Serializable
public class IManageFolderJson extends BaseJson
IManage folder info- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IManageFolderJson()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExternalRepositoryIdResultJson
getExternalIdentifier()
Set<WorkspaceCapabilityType>
getFolderCapabilities()
List of folder capabilitiesBoolean
getHasSubfolders()
Whether the folder has sub folders.Boolean
getIsPermsInherited()
String
getItemId()
IManage item id of the folderString
getModifiedBy()
Modified byString
getName()
Name of folder.String
getParentItemId()
The imanage item id of the parent folderString
getRoomUUID()
Workspace ID of the folderList<IManageFolderJson>
getSubFolders()
List of subfolders.Date
getUpdateDate()
Folder's update date.void
setExternalIdentifier(ExternalRepositoryIdResultJson externalIdentifier)
void
setFolderCapabilities(Set<WorkspaceCapabilityType> folderCapabilities)
List of folder capabilitiesvoid
setHasSubfolders(Boolean hasSubfolders)
Whether the folder has sub folders.void
setIsPermsInherited(Boolean isPermsInherited)
void
setItemId(String itemId)
IManage item id of the foldervoid
setModifiedBy(String modifiedBy)
Modified byvoid
setName(String name)
Name of folder.void
setParentItemId(String parentItemId)
The imanage item id of the parent foldervoid
setRoomUUID(String roomUUID)
Workspace ID of the foldervoid
setSubFolders(List<IManageFolderJson> subFolders)
List of subfolders.void
setUpdateDate(Date updateDate)
Folder's update date.-
Methods inherited from class com.blackberry.workspaces.api.sdk.json.BaseJson
getObjType, setObjType, toString
-
-
-
-
Method Detail
-
getItemId
public String getItemId()
IManage item id of the folder- Returns:
- IManage item id of the folder
-
setItemId
public void setItemId(String itemId)
IManage item id of the folder- Parameters:
itemId
- IManage item id of the folder
-
getUpdateDate
public Date getUpdateDate()
Folder's update date.- Returns:
- Folder's update date.
-
setUpdateDate
public void setUpdateDate(Date updateDate)
Folder's update date.- Parameters:
updateDate
- Folder's update date.
-
getSubFolders
public List<IManageFolderJson> getSubFolders()
List of subfolders. None if there are no subfolders.- Returns:
- List of subfolders. None if there are no subfolders.
-
setSubFolders
public void setSubFolders(List<IManageFolderJson> subFolders)
List of subfolders. None if there are no subfolders.- Parameters:
subFolders
- List of subfolders. None if there are no subfolders.
-
getParentItemId
public String getParentItemId()
The imanage item id of the parent folder- Returns:
- The imanage item id of the parent folder
-
setParentItemId
public void setParentItemId(String parentItemId)
The imanage item id of the parent folder- Parameters:
parentItemId
- The imanage item id of the parent folder
-
getFolderCapabilities
public Set<WorkspaceCapabilityType> getFolderCapabilities()
List of folder capabilities- Returns:
- List of folder capabilities
-
setFolderCapabilities
public void setFolderCapabilities(Set<WorkspaceCapabilityType> folderCapabilities)
List of folder capabilities- Parameters:
folderCapabilities
- List of folder capabilities
-
getName
public String getName()
Name of folder.- Returns:
- Name of folder.
-
setName
public void setName(String name)
Name of folder.- Parameters:
name
- Name of folder.
-
getHasSubfolders
public Boolean getHasSubfolders()
Whether the folder has sub folders.- Returns:
- Whether the folder has sub folders.
-
setHasSubfolders
public void setHasSubfolders(Boolean hasSubfolders)
Whether the folder has sub folders.- Parameters:
hasSubfolders
- Whether the folder has sub folders.
-
getExternalIdentifier
public ExternalRepositoryIdResultJson getExternalIdentifier()
-
setExternalIdentifier
public void setExternalIdentifier(ExternalRepositoryIdResultJson externalIdentifier)
-
getModifiedBy
public String getModifiedBy()
Modified by- Returns:
- Modified by
-
setModifiedBy
public void setModifiedBy(String modifiedBy)
Modified by- Parameters:
modifiedBy
- Modified by
-
getIsPermsInherited
public Boolean getIsPermsInherited()
-
setIsPermsInherited
public void setIsPermsInherited(Boolean isPermsInherited)
-
getRoomUUID
public String getRoomUUID()
Workspace ID of the folder- Returns:
- Workspace ID of the folder
-
setRoomUUID
public void setRoomUUID(String roomUUID)
Workspace ID of the folder- Parameters:
roomUUID
- Workspace ID of the folder
-
-