Add a finalizeSASLMechanismHandler method to the SASL ANONYMOUS handler to
ensure that the mechanism gets deregistered from the server when it is
finalized.
OpenDS Issue Number: 671
| | |
| | | |
| | | |
| | | |
| | | /** |
| | | * Performs any finalization that may be necessary for this SASL mechanism |
| | | * handler. |
| | | */ |
| | | public void finalizeSASLMechanismHandler() |
| | | { |
| | | assert debugEnter(CLASS_NAME, "finalizeSASLMechanismHandler"); |
| | | |
| | | DirectoryServer.deregisterSASLMechanismHandler(SASL_MECHANISM_ANONYMOUS); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * Processes the provided SASL bind operation. Note that if the SASL |