Class BackendInitializationListener

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract void backendFinalized​(BackendContext backendContext)
      Performs any processing that may be required whenever a backend is de-registered from the Directory Server.
      abstract void backendInitialized​(BackendContext backendContext)
      Performs any processing that may be required whenever a backend has been registered for use in the Directory Server.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • backendInitialized

        public abstract void backendInitialized​(BackendContext backendContext)
        Performs any processing that may be required whenever a backend has been registered for use in the Directory Server. This method will be invoked after the backend has been initialized and put into service.
        Parameters:
        backendContext - The backend that has been initialized and put into service.
      • backendFinalized

        public abstract void backendFinalized​(BackendContext backendContext)
        Performs any processing that may be required whenever a backend is de-registered from the Directory Server. This method will be invoked before the backend has been taken out of service.
        Parameters:
        backendContext - The backend that is about to be taken out of service.