final Scan scan = new Scan();
this.setStartStopRows(scan, keyAttrib);
withArgs.setScanArgs(scan, columnAttribs);
final RowRequest rowRequest = withArgs.hasAnIndex()
? new IndexRequest(scan.getStartRow(), scan.getStopRow(), columnAttribs)
: new ScanRequest(scan);
return Lists.newArrayList(rowRequest);
}