public class DataSetTestResult
extends java.lang.Object
implements java.io.Serializable
Connector.testDataSet(...)
.Constructor and Description |
---|
DataSetTestResult() |
Modifier and Type | Method and Description |
---|---|
java.util.List<ColumnDetails> |
getColumns()
Returns the list of columns of this test result.
|
java.util.List<java.lang.String[]> |
getRows()
Returns the sample rows of this test result.
|
boolean |
isSuccessful()
Returns a boolean flag indicating whether the test was successful.
|
void |
setColumns(java.util.List<ColumnDetails> columns)
Sets the list of columns of this test result.
|
void |
setRows(java.util.List<java.lang.String[]> rows)
Sets the sample rows of this test result.
|
void |
setSuccessful(boolean successful)
Sets a boolean flag indicating whether the test was successful.
|
public boolean isSuccessful()
true
if successful, false
otherwisepublic void setSuccessful(boolean successful)
successful
- true
if successful, false
otherwisepublic java.util.List<ColumnDetails> getColumns()
public void setColumns(java.util.List<ColumnDetails> columns)
columns
- Result columnspublic java.util.List<java.lang.String[]> getRows()
public void setRows(java.util.List<java.lang.String[]> rows)
rows
- Result sample rows