Class DocumentsSelectionJson
- java.lang.Object
-
- com.blackberry.workspaces.api.sdk.json.BaseJson
-
- com.blackberry.workspaces.api.sdk.json.DocumentsSelectionJson
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DocumentsSelectionSdsJson
public class DocumentsSelectionJson extends BaseJson
Base type of several file selection JSONs- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DocumentsSelectionJson()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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).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).-
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.
-
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
-
-