Class CreateFolderJson
- java.lang.Object
-
- com.blackberry.workspaces.api.sdk.json.BaseJson
-
- com.blackberry.workspaces.api.sdk.json.CreateFolderJson
-
- All Implemented Interfaces:
Serializable
public class CreateFolderJson extends BaseJson
Add folder.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateFolderJson()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeviceType
getDeviceType()
ExternalRepositoryIdRequestJson
getExternalRepositoryIdentifier()
String
getName()
New folder name.String
getParentGuid()
Parent folder UUID (if not specified or zero the folder will be created in the workspace's root ).Integer
getParentId()
Parent folder ID (if not specified or zero the folder will be created in the workspace's root ).String
getRoomGuid()
Workspace Guid.Integer
getRoomId()
Workspace ID.void
setDeviceType(DeviceType deviceType)
void
setExternalRepositoryIdentifier(ExternalRepositoryIdRequestJson externalRepositoryIdentifier)
void
setName(String name)
New folder name.void
setParentGuid(String parentGuid)
Parent folder UUID (if not specified or zero the folder will be created in the workspace's root ).void
setParentId(Integer parentId)
Parent folder ID (if not specified or zero the folder will be created in the workspace's root ).void
setRoomGuid(String roomGuid)
Workspace Guid.void
setRoomId(Integer roomId)
Workspace ID.-
Methods inherited from class com.blackberry.workspaces.api.sdk.json.BaseJson
getObjType, setObjType, toString
-
-
-
-
Method Detail
-
getDeviceType
public DeviceType getDeviceType()
-
setDeviceType
public void setDeviceType(DeviceType deviceType)
-
getRoomGuid
public String getRoomGuid()
Workspace Guid.- Returns:
- Workspace Guid.
-
setRoomGuid
public void setRoomGuid(String roomGuid)
Workspace Guid.- Parameters:
roomGuid
- Workspace Guid.
-
getParentGuid
public String getParentGuid()
Parent folder UUID (if not specified or zero the folder will be created in the workspace's root ).- Returns:
- Parent folder UUID (if not specified or zero the folder will be created in the workspace's root ).
-
setParentGuid
public void setParentGuid(String parentGuid)
Parent folder UUID (if not specified or zero the folder will be created in the workspace's root ).- Parameters:
parentGuid
- Parent folder UUID (if not specified or zero the folder will be created in the workspace's root ).
-
getName
public String getName()
New folder name.- Returns:
- New folder name.
-
setName
public void setName(String name)
New folder name.- Parameters:
name
- New folder name.
-
getRoomId
public Integer getRoomId()
Workspace ID.- Returns:
- Workspace ID.
-
setRoomId
public void setRoomId(Integer roomId)
Workspace ID.- Parameters:
roomId
- Workspace ID.
-
getParentId
public Integer getParentId()
Parent folder ID (if not specified or zero the folder will be created in the workspace's root ).- Returns:
- Parent folder ID (if not specified or zero the folder will be created in the workspace's root ).
-
setParentId
public void setParentId(Integer parentId)
Parent folder ID (if not specified or zero the folder will be created in the workspace's root ).- Parameters:
parentId
- Parent folder ID (if not specified or zero the folder will be created in the workspace's root ).
-
getExternalRepositoryIdentifier
public ExternalRepositoryIdRequestJson getExternalRepositoryIdentifier()
-
setExternalRepositoryIdentifier
public void setExternalRepositoryIdentifier(ExternalRepositoryIdRequestJson externalRepositoryIdentifier)
-
-