接口 AuditEventRepository

    • 方法详细资料

      • add

        void add​(AuditEvent event)
        Log an event.
        参数:
        event - the audit event to log
      • find

        List<AuditEventfind​(Date after)
        Find audit events since the time provided.
        参数:
        after - timestamp of earliest result required (or null if unrestricted)
        返回:
        audit events
        从以下版本开始:
        1.4.0
      • find

        List<AuditEventfind​(String principal,
                              Date after)
        Find audit events relating to the specified principal since the time provided.
        参数:
        principal - the principal name to search for (or null if unrestricted)
        after - timestamp of earliest result required (or null if unrestricted)
        返回:
        audit events relating to the principal
      • find

        List<AuditEventfind​(String principal,
                              Date after,
                              String type)
        Find audit events of specified type relating to the specified principal since the time provided.
        参数:
        principal - the principal name to search for (or null if unrestricted)
        after - timestamp of earliest result required (or null if unrestricted)
        type - the event type to search for (or null if unrestricted)
        返回:
        audit events of specified type relating to the principal
        从以下版本开始:
        1.4.0