Example #1
0
 /** {@inheritDoc} */
 @Override
 public boolean isAllowed(ExtendedOperation operation) {
   boolean ret;
   if (!(ret = skipAccessCheck(operation))) {
     Entry e = new Entry(operation.getAuthorizationDN(), null, null, null);
     AciLDAPOperationContainer operationContainer =
         new AciLDAPOperationContainer(operation, e, (ACI_READ | ACI_EXT_OP));
     ret = accessAllowed(operationContainer);
   }
   return ret;
 }