Table table = connection.getTable(TableName.valueOf("originalSignal"));
Scan scan = new Scan();
RowFilter rowFilter = new RowFilter(CompareOp.EQUAL, new SubstringComparator(vin));
scan.setFilter(rowFilter);
ResultScanner rs =null;
rs = table.getScanner(scan);