Make sure that the finalizeExtendedOperationHandler method is called for all
such handlers during the Directory Server shutdown process.
OpenDS Issue Number: 672
| | |
| | | } |
| | | |
| | | |
| | | // Finalize all of the extended operation handlers. |
| | | for (ExtendedOperationHandler handler : |
| | | directoryServer.extendedOperationHandlers.values()) |
| | | { |
| | | try |
| | | { |
| | | handler.finalizeExtendedOperationHandler(); |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | assert debugException(CLASS_NAME, "shutDown", e); |
| | | } |
| | | } |
| | | |
| | | |
| | | // Shut down all the other components that may need special handling. |
| | | // NYI |
| | | |