table.insert(new Long(124), "BAR", true);
table.insert(new Long(125), "XYZ", true);
table.insert(new Long(126), "ABC", true);
table.insert(new Long(127), "DEF", true);
Tuple tuple = new Tuple();
TupleBrowser iter = table.browse();
while (iter.getNext(tuple)) {
Object key = tuple.getKey();
System.out.println("Key " + key);
}
manager.stop();
}