| | |
| | | */ |
| | | package org.opends.server.core; |
| | | |
| | | |
| | | |
| | | import org.opends.server.admin.std.server.AccessControlHandlerCfg; |
| | | import org.opends.server.api.AccessControlHandler; |
| | | import org.opends.server.config.ConfigException; |
| | | import org.opends.server.types.*; |
| | | import org.opends.server.workflowelement.localbackend.*; |
| | | |
| | | |
| | | |
| | | /** |
| | | * This class implements a default access control provider for the Directory |
| | | * Server. |
| | |
| | | * {@inheritDoc} |
| | | */ |
| | | @Override |
| | | public boolean isAllowed(LocalBackendBindOperation bindOperation) |
| | | public boolean isAllowed(BindOperation bindOperation) |
| | | { |
| | | return true; |
| | | } |
| | |
| | | * {@inheritDoc} |
| | | */ |
| | | @Override |
| | | public boolean isAllowed(LocalBackendModifyDNOperation modifyDNOperation) |
| | | public boolean isAllowed(ModifyDNOperation modifyDNOperation) |
| | | { |
| | | return true; |
| | | } |
| | |
| | | * {@inheritDoc} |
| | | */ |
| | | @Override |
| | | public boolean isAllowed(LocalBackendSearchOperation searchOperation) |
| | | public boolean isAllowed(SearchOperation searchOperation) |
| | | { |
| | | return true; |
| | | } |