}
private void reportLuns() throws SCSIException, TimeoutException,
InterruptedException {
final byte[] data = new byte[4096];
final CDB cdb = new CDBReportLuns(data.length);
final int len = api.executeCommand(cdb, data, 0, 5000);
System.out.println("ReportLuns" + NumberUtils.hex(data, 0, len));
}