Class AccessLogger

    • Method Detail

      • getInstance

        public static AccessLogger getInstance()
        Retrieve the singleton instance of this class.
        Returns:
        The singleton instance of this logger.
      • logConnect

        public static void logConnect​(ConnectionContext connectionContext)
        Writes a message to the access logger with information about a new client connection that has been established, regardless of whether it will be immediately terminated.
        Parameters:
        connectionContext - The client connection that has been established.
      • logDisconnect

        public static void logDisconnect​(ConnectionContext connectionContext,
                                         DisconnectReason disconnectReason,
                                         LocalizableMessage message)
        Writes a message to the access logger with information about the termination of an existing client connection.
        Parameters:
        connectionContext - The client connection that has been terminated.
        disconnectReason - A generic disconnect reason for the connection termination.
        message - A human-readable message that can provide additional information about the disconnect.
      • logAbandonRequest

        public static void logAbandonRequest​(RequestContext context,
                                             AbandonRequest request)
        Writes a message to the access logger with information about the provided abandon request.
        Parameters:
        context - the context for this request
        request - the request to log
      • logAbandonResult

        public static void logAbandonResult​(RequestContext context,
                                            AbandonRequest request,
                                            Result result)
        Writes a message to the access logger with information about the provided result. Note there is no LDAP result sent back to client, it is for logging purposes only.
        Parameters:
        context - the context for the request
        request - the original abandon request
        result - the Result to the abandon request
      • logAddRequest

        public static void logAddRequest​(RequestContext context,
                                         AddRequest request)
        Writes a message to the access logger with information about the provided add request.
        Parameters:
        context - the context for this request
        request - the request to log
      • logAddResult

        public static void logAddResult​(RequestContext context,
                                        AddRequest request,
                                        Result result)
        Writes a message to the access logger with information about the provided result.
        Parameters:
        context - the context for the request
        request - the original add request
        result - the Result to the add request
      • logBindRequest

        public static void logBindRequest​(RequestContext context,
                                          BindRequest request)
        Writes a message to the access logger with information about the provided bind request.
        Parameters:
        context - the context for this request
        request - the request to log
      • logBindResult

        public static void logBindResult​(RequestContext context,
                                         BindRequest request,
                                         Result result)
        Writes a message to the access logger with information about the provided bind result.
        Parameters:
        context - the context for the request
        request - the original bind request
        result - the Result to the bind request
      • logCompareRequest

        public static void logCompareRequest​(RequestContext context,
                                             CompareRequest request)
        Writes a message to the access logger with information about the provided compare request.
        Parameters:
        context - the context for this request
        request - the request to log
      • logCompareResult

        public static void logCompareResult​(RequestContext context,
                                            CompareRequest request,
                                            Result result)
        Writes a message to the access logger with information about the provided compare result.
        Parameters:
        context - the context for the request
        request - the original compare request
        result - the CompareResult to the compare request
      • logDeleteRequest

        public static void logDeleteRequest​(RequestContext context,
                                            DeleteRequest request)
        Writes a message to the access logger with information about the provided delete request.
        Parameters:
        context - the context for this request
        request - the request to log
      • logDeleteResult

        public static void logDeleteResult​(RequestContext context,
                                           DeleteRequest request,
                                           Result result)
        Writes a message to the access logger with information about the provided delete result.
        Parameters:
        context - the context for the request
        request - the original delete request
        result - the Result to the delete request
      • logExtendedRequest

        public static void logExtendedRequest​(RequestContext context,
                                              ExtendedRequest<?> request)
        Writes a message to the access logger with information about the provided extended request.
        Parameters:
        context - the context for this request
        request - the request to log
      • logExtendedResult

        public static void logExtendedResult​(RequestContext context,
                                             ExtendedRequest<?> request,
                                             Result result)
        Writes a message to the access logger with information about the provided extended result.
        Parameters:
        context - the context for the request
        request - the original extended request
        result - the Result to the extended request
      • logInvalidRequest

        public static void logInvalidRequest​(RequestContext context,
                                             InvalidRequest request)
        Writes a message to the access logger with information about an invalid request.
        Parameters:
        context - the context for this request
        request - the description of the invalid request to log
      • logInvalidResult

        public static void logInvalidResult​(RequestContext context,
                                            InvalidRequest request,
                                            Result result)
        Writes a message to the access logger with information about the provided result.
        Parameters:
        context - the context for the request
        request - the original description of the invalid request
        result - the Result to the request
      • logModifyRequest

        public static void logModifyRequest​(RequestContext context,
                                            ModifyRequest request)
        Writes a message to the access logger with information about the provided modify request.
        Parameters:
        context - the context for this request
        request - the request to log
      • logModifyResult

        public static void logModifyResult​(RequestContext context,
                                           ModifyRequest request,
                                           Result result)
        Writes a message to the access logger with information about the provided modify result.
        Parameters:
        context - the context for the request
        request - the original modify request
        result - the Result to the modify request
      • logModifyDnRequest

        public static void logModifyDnRequest​(RequestContext context,
                                              ModifyDnRequest request)
        Writes a message to the access logger with information about the provided modifyDN request.
        Parameters:
        context - the context for this request
        request - the request to log
      • logModifyDnResult

        public static void logModifyDnResult​(RequestContext context,
                                             ModifyDnRequest request,
                                             Result result)
        Writes a message to the access logger with information about the provided modifyDN result.
        Parameters:
        context - the context for the request
        request - the original modifyDN request
        result - the Result to the modifyDN request
      • logSearchRequest

        public static void logSearchRequest​(RequestContext context,
                                            SearchRequest request)
        Writes a message to the access logger with information about the provided search request.
        Parameters:
        context - the context for this request
        request - the request to log
      • logSearchResult

        public static void logSearchResult​(RequestContext context,
                                           SearchRequest request,
                                           Result result)
        Writes a message to the access logger with information about the provided search result. Only SearchResultDone will be logged, not result entries nor result references.
        Parameters:
        context - the context for the request
        request - the original search request
        result - the Result to the search request
      • logUnbind

        public static void logUnbind​(RequestContext context,
                                     UnbindRequest request)
        Writes a message to the access logger with information about the provided unbind request.
        Parameters:
        context - the context for the request
        request - the request to log