{
String rowKey = "aGenericRowKey";
String qualifier = "aGenericQualifier";
String value = "someValue";
IHBaseTable table = htable.getTable();
Put put = createPut(rowKey, htable.getFamily(), qualifier, value);
table.put(put);
try
{
// We want to do the read without using the manager.
HTableInterface tableInterface = htable.getTestingTable();