Class BulkDeleteWorkspaceDocumentsJson
- java.lang.Object
-
- com.blackberry.workspaces.api.sdk.json.BaseJson
-
- com.blackberry.workspaces.api.sdk.json.BulkDeleteWorkspaceDocumentsJson
-
- All Implemented Interfaces:
Serializable
public class BulkDeleteWorkspaceDocumentsJson extends BaseJson
Delete multiple files, includes information about how to delete.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BulkDeleteWorkspaceDocumentsJson()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeviceType
getDeviceType()
Device type.Set<String>
getDocumentGuids()
A Set of file guids.Boolean
getForceAction()
Force the action even if not allowed for all files provided (only allowed files will be affected).Boolean
getIsPermanent()
String
getMessage()
Some operations using this Json support messages left for affected users.void
setDeviceType(DeviceType deviceType)
Device type.void
setDocumentGuids(Set<String> documentGuids)
A Set of file guids.void
setForceAction(Boolean forceAction)
Force the action even if not allowed for all files provided (only allowed files will be affected).void
setIsPermanent(Boolean isPermanent)
void
setMessage(String message)
Some operations using this Json support messages left for affected users.-
Methods inherited from class com.blackberry.workspaces.api.sdk.json.BaseJson
getObjType, setObjType, toString
-
-
-
-
Method Detail
-
getDocumentGuids
public Set<String> getDocumentGuids()
A Set of file guids.- Returns:
- A Set of file guids.
-
setDocumentGuids
public void setDocumentGuids(Set<String> documentGuids)
A Set of file guids.- Parameters:
documentGuids
- A Set of file guids.
-
getDeviceType
public DeviceType getDeviceType()
Device type. Choices are WINDOWS_PLUGIN, UPLOADER, IOS_APP, BLACKBERRY_APP,SYNC, SHAREPOINT- Returns:
- Device type. Choices are WINDOWS_PLUGIN, UPLOADER, IOS_APP, BLACKBERRY_APP,SYNC, SHAREPOINT
-
setDeviceType
public void setDeviceType(DeviceType deviceType)
Device type. Choices are WINDOWS_PLUGIN, UPLOADER, IOS_APP, BLACKBERRY_APP,SYNC, SHAREPOINT- Parameters:
deviceType
- Device type. Choices are WINDOWS_PLUGIN, UPLOADER, IOS_APP, BLACKBERRY_APP,SYNC, SHAREPOINT
-
getIsPermanent
public Boolean getIsPermanent()
-
setIsPermanent
public void setIsPermanent(Boolean isPermanent)
-
getMessage
public String getMessage()
Some operations using this Json support messages left for affected users.- Returns:
- Some operations using this Json support messages left for affected users.
-
setMessage
public void setMessage(String message)
Some operations using this Json support messages left for affected users.- Parameters:
message
- Some operations using this Json support messages left for affected users.
-
getForceAction
public Boolean getForceAction()
Force the action even if not allowed for all files provided (only allowed files will be affected). Not all operations support this parameter. Default is TRUE.- Returns:
- Force the action even if not allowed for all files provided (only allowed files will be affected). Not all operations support this parameter. Default is TRUE.
-
setForceAction
public void setForceAction(Boolean forceAction)
Force the action even if not allowed for all files provided (only allowed files will be affected). Not all operations support this parameter. Default is TRUE.- Parameters:
forceAction
- Force the action even if not allowed for all files provided (only allowed files will be affected). Not all operations support this parameter. Default is TRUE.
-
-