public class RowStructure
extends java.lang.Object
Constructor and Description |
---|
RowStructure() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getActionId()
Returns the action ID for a single data row to indicate the action performed on that row.
0=insert, 1=delete, 2=update |
java.lang.String |
getDataRow()
Returns the data row.
|
java.lang.String |
getStatus()
Returns the status code for a single data row to indicate whether the operation performed on that row was successful.
0=success, 1=failed, 2=resolved, 3=no operation |
java.lang.String |
getUniqueId()
Returns the unique ID for a data row.
|
void |
setActionId(java.lang.String actionId)
Sets the action ID for a single data row.
|
void |
setDataRow(java.lang.String row)
Identifies a data row.
|
void |
setStatus(java.lang.String status)
Sets the status code for a single data row.
|
void |
setUniqueId(java.lang.String id)
Sets the unique ID for a data row.
|
public void setDataRow(java.lang.String row)
row
- Represents a single data unit.public java.lang.String getDataRow()
public void setUniqueId(java.lang.String id)
id
- Represents a unique identifier for the data row.public java.lang.String getUniqueId()
public java.lang.String getStatus()
public void setStatus(java.lang.String status)
status
- Status code for a single data row to indicate whether the operation performed on that row was successful. public java.lang.String getActionId()
public void setActionId(java.lang.String actionId)
actionId
- Action ID for a single data row to indicate the action to perform on that row. The mobile application and the Mobile Support Client use this method while passing data rows to each other.