Class DocumentsSelectionVdrJson
- java.lang.Object
-
- com.blackberry.workspaces.sdk.api.json.BaseJson
-
- com.blackberry.workspaces.sdk.api.json.DocumentsSelectionVdrJson
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DeleteDocumentsSelectionVdrJson
,DownloadDocumentsSelectionVdrJson
,MarkDocumentsSelectionVdrJson
public class DocumentsSelectionVdrJson extends BaseJson
Specifies various criteria for selecting files- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DocumentsSelectionVdrJson()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<String>
getDocumentGuids()
A Set of file guids.Set<String>
getFolderGuids()
Set<Integer>
getFolderIds()
Set<String>
getFolderPaths()
A Set of folder paths or idsBoolean
getForceAction()
Force the action even if not allowed for all files provided (only allowed files will be affected).void
setDocumentGuids(Set<String> documentGuids)
A Set of file guids.void
setFolderGuids(Set<String> folderGuids)
void
setFolderIds(Set<Integer> folderIds)
void
setFolderPaths(Set<String> folderPaths)
A Set of folder paths or idsvoid
setForceAction(Boolean forceAction)
Force the action even if not allowed for all files provided (only allowed files will be affected).-
Methods inherited from class com.blackberry.workspaces.sdk.api.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.
-
getFolderPaths
public Set<String> getFolderPaths()
A Set of folder paths or ids- Returns:
- A Set of folder paths or ids
-
setFolderPaths
public void setFolderPaths(Set<String> folderPaths)
A Set of folder paths or ids- Parameters:
folderPaths
- A Set of folder paths or ids
-
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.- Returns:
- Force the action even if not allowed for all files provided (only allowed files will be affected). Not all operations support this parameter.
-
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.- 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.
-
-