public class UDChildTableRecord
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
UDChildTableRecord()
Creates a new UDChildTableRecord object.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAction()
Returns the action need to be performed on thie child table record
|
java.util.HashMap |
getRecordData()
Returns the child table record data
|
java.lang.String |
getValue(java.lang.String columnName)
Retrieves the value of a column from the data of the child table record
|
void |
setAction(java.lang.String action)
Sets the action need to be performed on thie child table record.
|
void |
setRecordData(java.util.HashMap recordData)
Sets the child table record data
|
void |
setValue(java.lang.String columnName,
java.lang.String columnValue)
Sets the value of a column in the data of the child table record
|
public UDChildTableRecord()
public java.lang.String getAction()
public void setAction(java.lang.String action)
action
- The action to set.public java.util.HashMap getRecordData()
public void setRecordData(java.util.HashMap recordData)
recordData
- The recordData to set.public java.lang.String getValue(java.lang.String columnName) throws java.lang.Exception
columnName
- The column whose value is to be retrieved.java.lang.Exception
- If the specified column does not existpublic void setValue(java.lang.String columnName, java.lang.String columnValue)
columnName
- The column whose value is to be set.columnValue
- The value to be set.