コード例 #1
0
 @Override
 public boolean match(AccountState accountState) throws OrmException {
   return accountControl.canSee(accountState);
 }
コード例 #2
0
 AccountIsVisibleToPredicate(AccountControl accountControl) {
   super(AccountQueryBuilder.FIELD_VISIBLETO, describe(accountControl.getUser()));
   this.accountControl = accountControl;
 }