public final class OperationResult extends Object
| Constructor and Description |
|---|
OperationResult()
Constructs a OperationResult object.
|
OperationResult(int count,
Uuid uuid,
List<Row> rows,
String error,
String details)
Constructs a OperationResult object.
|
OperationResult(List<Row> rows)
Constructs a OperationResult object.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCount()
Return count.
|
String |
getDetails()
Return details.
|
String |
getError()
Return error.
|
List<Row> |
getRows()
Return rows.
|
Uuid |
getUuid()
Return uuid.
|
void |
setCount(int count)
Set count value.
|
void |
setDetails(String details)
Set details value.
|
void |
setError(String error)
Set error value.
|
void |
setRows(List<Row> rows)
Set rows value.
|
void |
setUuid(Uuid uuid)
Set uuid value.
|
public OperationResult()
public OperationResult(List<Row> rows)
rows - List of Row entitypublic int getCount()
public void setCount(int count)
count - the Operation message of countpublic Uuid getUuid()
public void setUuid(Uuid uuid)
uuid - the Operation message of uuidpublic void setRows(List<Row> rows)
rows - the Operation message of rowspublic String getError()
public void setError(String error)
error - the Operation message of errorpublic String getDetails()
public void setDetails(String details)
details - the Operation message of details