Interface PostConnectProcessor

    • Method Detail

      • processPreAuthenticatedConnection

        void processPreAuthenticatedConnection​(LDAPConnection connection)
                                        throws LDAPException
        Performs any appropriate processing on the provided connection before making it available for use in a connection pool. This method will be invoked immediately after the connection has been established but before any attempt has been made to perform any authentication.
        Parameters:
        connection - The connection for which the processing is to be performed.
        Throws:
        LDAPException - If a problem occurs during processing. If an exception is thrown, then the connection will be terminated and not used in the pool.
      • processPostAuthenticatedConnection

        void processPostAuthenticatedConnection​(LDAPConnection connection)
                                         throws LDAPException
        Performs any appropriate processing on the provided connection before making it available for use in a connection pool. This method will be invoked immediately after any appropriate authentication has been performed on the connection.
        Parameters:
        connection - The connection for which the processing is to be performed.
        Throws:
        LDAPException - If a problem occurs during processing. If an exception is thrown, then the connection will be terminated and not used in the pool.