return true;
}
public Set<Node> listKeys(int id, int db) {
ListKeys command = new ListKeys(id, db);
command.execute();
return command.getNodes();
}
public Set<Node> listContainers(int id, int db, String key, boolean flat, Order order) {
ListContainers command = new ListContainers(id, db, key, flat, order);