Class BulkOperationResultJson
- java.lang.Object
-
- com.blackberry.workspaces.api.sdk.json.BaseJson
-
- com.blackberry.workspaces.api.sdk.json.BulkOperationResultJson
-
- All Implemented Interfaces:
Serializable
public class BulkOperationResultJson extends BaseJson
Show result of bulk operation.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BulkOperationResultJson()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ItemErrorInfoJson>
getProblematicItems()
List of problems in bulk operation.SuccessLevel
getSuccess()
Indicates whether all operations completed successfully.String
getTransactionUuid()
In case the server has some tasks to perform , it returns UUID - for the client to query laterboolean
isFullSuccess()
void
setFullSuccess(boolean fullSuccess)
void
setProblematicItems(List<ItemErrorInfoJson> problematicItems)
List of problems in bulk operation.void
setSuccess(SuccessLevel success)
Indicates whether all operations completed successfully.void
setTransactionUuid(String transactionUuid)
In case the server has some tasks to perform , it returns UUID - for the client to query later-
Methods inherited from class com.blackberry.workspaces.api.sdk.json.BaseJson
getObjType, setObjType, toString
-
-
-
-
Method Detail
-
getTransactionUuid
public String getTransactionUuid()
In case the server has some tasks to perform , it returns UUID - for the client to query later- Returns:
- In case the server has some tasks to perform , it returns UUID - for the client to query later
-
setTransactionUuid
public void setTransactionUuid(String transactionUuid)
In case the server has some tasks to perform , it returns UUID - for the client to query later- Parameters:
transactionUuid
- In case the server has some tasks to perform , it returns UUID - for the client to query later
-
getSuccess
public SuccessLevel getSuccess()
Indicates whether all operations completed successfully.- Returns:
- Indicates whether all operations completed successfully.
-
setSuccess
public void setSuccess(SuccessLevel success)
Indicates whether all operations completed successfully.- Parameters:
success
- Indicates whether all operations completed successfully.
-
getProblematicItems
public List<ItemErrorInfoJson> getProblematicItems()
List of problems in bulk operation.- Returns:
- List of problems in bulk operation.
-
setProblematicItems
public void setProblematicItems(List<ItemErrorInfoJson> problematicItems)
List of problems in bulk operation.- Parameters:
problematicItems
- List of problems in bulk operation.
-
isFullSuccess
public boolean isFullSuccess()
-
setFullSuccess
public void setFullSuccess(boolean fullSuccess)
-
-