protected CloseableIterator<T> getObjects(final String... authorizations) {
try {
final BatchScanner scanner = getFullScanner(authorizations);
final Iterator<Entry<Key, Value>> it = scanner.iterator();
return new CloseableIteratorWrapper<T>(
new ScannerClosableWrapper(
scanner),
new NativeIteratorWrapper(
it));
}
catch (final TableNotFoundException e) {