Uses of Interface
org.forgerock.audit.events.handlers.AuditEventHandler
-
Packages that use AuditEventHandler Package Description org.forgerock.audit Package contains the AuditService.org.forgerock.audit.events.handlers This package contains the defaultAuditEventHandlers
.org.forgerock.audit.handlers.csv This package contains the default AuditEventHandler implementations.org.forgerock.audit.handlers.elasticsearch This package contains the ElasticsearchAuditEventHandler
implementation.org.forgerock.audit.handlers.jdbc This package contains a JDBC AuditEventHandler implementation.org.forgerock.audit.handlers.jms This package contains a JMS AuditEventHandler implementation.org.forgerock.audit.handlers.json This package contains the JSON-fileAuditEventHandler
implementation.org.forgerock.audit.handlers.splunk This package contains the audit handler implementation for Splunk.org.forgerock.audit.handlers.syslog This package contains a Syslog AuditEventHandler implementation.org.forgerock.openig.audit Service Provider interface for registering audit events. -
-
Uses of AuditEventHandler in org.forgerock.audit
Methods in org.forgerock.audit that return AuditEventHandler Modifier and Type Method Description AuditEventHandler
AuditService. getRegisteredHandler(String handlerName)
Returns the registered handler corresponding to provided name.AuditEventHandler
AuditServiceProxy. getRegisteredHandler(String handlerName)
Methods in org.forgerock.audit that return types with arguments of type AuditEventHandler Modifier and Type Method Description Collection<AuditEventHandler>
AuditService. getRegisteredHandlers()
Returns the registered handlers.Collection<AuditEventHandler>
AuditServiceProxy. getRegisteredHandlers()
Methods in org.forgerock.audit with parameters of type AuditEventHandler Modifier and Type Method Description AuditServiceBuilder
AuditServiceBuilder. withAuditEventHandler(AuditEventHandler auditEventHandler)
Register an AuditEventHandler.Method parameters in org.forgerock.audit with type arguments of type AuditEventHandler Modifier and Type Method Description AuditServiceBuilder
AuditServiceBuilder. withAuditEventHandler(Class<? extends AuditEventHandler> clazz, EventHandlerConfiguration configuration)
Register an AuditEventHandler. -
Uses of AuditEventHandler in org.forgerock.audit.events.handlers
Classes in org.forgerock.audit.events.handlers that implement AuditEventHandler Modifier and Type Class Description class
AuditEventHandlerBase
Abstract AuditEventHandler class.class
NoOpAuditEventHandler
An event handler that does nothing.Methods in org.forgerock.audit.events.handlers with type parameters of type AuditEventHandler Modifier and Type Method Description <T extends AuditEventHandler>
TAuditEventHandlerFactory. create(String name, Class<T> clazz, EventHandlerConfiguration configuration, EventTopicsMetaData eventTopicsMetaData)
Create a new AuditEventHandler instance.<T extends AuditEventHandler>
TDependencyProviderAuditEventHandlerFactory. create(String name, Class<T> clazz, EventHandlerConfiguration configuration, EventTopicsMetaData eventTopicsMetaData)
-
Uses of AuditEventHandler in org.forgerock.audit.handlers.csv
Classes in org.forgerock.audit.handlers.csv that implement AuditEventHandler Modifier and Type Class Description class
CsvAuditEventHandler
Handles AuditEvents by writing them to a CSV file. -
Uses of AuditEventHandler in org.forgerock.audit.handlers.elasticsearch
Classes in org.forgerock.audit.handlers.elasticsearch that implement AuditEventHandler Modifier and Type Class Description class
ElasticsearchAuditEventHandler
AuditEventHandler
for Elasticsearch. -
Uses of AuditEventHandler in org.forgerock.audit.handlers.jdbc
Classes in org.forgerock.audit.handlers.jdbc that implement AuditEventHandler Modifier and Type Class Description class
JdbcAuditEventHandler
Implements aAuditEventHandler
to writeAuditEvent
s to a JDBC repository. -
Uses of AuditEventHandler in org.forgerock.audit.handlers.jms
Classes in org.forgerock.audit.handlers.jms that implement AuditEventHandler Modifier and Type Class Description class
JmsAuditEventHandler
Publishes Audit events on a JMS Topic. -
Uses of AuditEventHandler in org.forgerock.audit.handlers.json
Classes in org.forgerock.audit.handlers.json that implement AuditEventHandler Modifier and Type Class Description class
JsonAuditEventHandler
AuditEventHandler
for persisting raw JSON events to a file. -
Uses of AuditEventHandler in org.forgerock.audit.handlers.splunk
Classes in org.forgerock.audit.handlers.splunk that implement AuditEventHandler Modifier and Type Class Description class
SplunkAuditEventHandler
Audit event handler that writes out to Splunk's HTTP event collector RAW endpoint. -
Uses of AuditEventHandler in org.forgerock.audit.handlers.syslog
Classes in org.forgerock.audit.handlers.syslog that implement AuditEventHandler Modifier and Type Class Description class
SyslogAuditEventHandler
The handler publishes audit events formatted usingSyslogFormatter
to a syslog daemon using the configuredSyslogPublisher
. -
Uses of AuditEventHandler in org.forgerock.openig.audit
Methods in org.forgerock.openig.audit that return AuditEventHandler Modifier and Type Method Description AuditEventHandler
NoOpAuditService. getRegisteredHandler(String s)
Methods in org.forgerock.openig.audit that return types with arguments of type AuditEventHandler Modifier and Type Method Description Collection<AuditEventHandler>
NoOpAuditService. getRegisteredHandlers()
-