if (userid == null) {
return;
}
// If this user ID is in the set
if (filter.membershipTest(new Key(userid.getBytes()))) {
// Get the reputation from the HBase table
Result r = table.get(new Get(userid.getBytes()));
int reputation = Integer.parseInt(new String(r.getValue(
"attr".getBytes(), "Reputation".getBytes())));
// If the reputation is at least 1,500,