| | |
| | | |
| | | |
| | | |
| | | import org.opends.server.admin.std.server.SASLMechanismHandlerCfg; |
| | | import org.opends.server.api.SASLMechanismHandler; |
| | | import org.opends.server.config.ConfigEntry; |
| | | import org.opends.server.config.ConfigException; |
| | | import org.opends.server.core.BindOperation; |
| | | import org.opends.server.core.DirectoryServer; |
| | |
| | | * then that trace information will be written to the server error log. |
| | | */ |
| | | public class AnonymousSASLMechanismHandler |
| | | extends SASLMechanismHandler |
| | | extends SASLMechanismHandler<SASLMechanismHandlerCfg> |
| | | { |
| | | |
| | | |
| | | |
| | | /** |
| | | * Creates a new instance of this SASL mechanism handler. No initialization |
| | | * should be done in this method, as it should all be performed in the |
| | |
| | | public AnonymousSASLMechanismHandler() |
| | | { |
| | | super(); |
| | | |
| | | } |
| | | |
| | | |
| | |
| | | * {@inheritDoc} |
| | | */ |
| | | @Override() |
| | | public void initializeSASLMechanismHandler(ConfigEntry configEntry) |
| | | public void initializeSASLMechanismHandler(SASLMechanismHandlerCfg |
| | | configuration) |
| | | throws ConfigException, InitializationException |
| | | { |
| | | // No real implementation is required. Simply register with the Directory |