@Override
 public boolean match(AccountState accountState) throws OrmException {
   return accountControl.canSee(accountState);
 }
 AccountIsVisibleToPredicate(AccountControl accountControl) {
   super(AccountQueryBuilder.FIELD_VISIBLETO, describe(accountControl.getUser()));
   this.accountControl = accountControl;
 }