Uses of Class
org.forgerock.audit.events.handlers.EventHandlerConfiguration
-
Packages that use EventHandlerConfiguration 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.audit.json This package contains utilities to build and configure audit service and handlers from JSON configuration. -
-
Uses of EventHandlerConfiguration in org.forgerock.audit
Methods in org.forgerock.audit with parameters of type EventHandlerConfiguration Modifier and Type Method Description AuditServiceBuilder
AuditServiceBuilder. withAuditEventHandler(Class<? extends AuditEventHandler> clazz, EventHandlerConfiguration configuration)
Register an AuditEventHandler. -
Uses of EventHandlerConfiguration in org.forgerock.audit.events.handlers
Subclasses of EventHandlerConfiguration in org.forgerock.audit.events.handlers Modifier and Type Class Description class
FileBasedEventHandlerConfiguration
Configures time based or size based log file rotation.Methods in org.forgerock.audit.events.handlers with parameters of type EventHandlerConfiguration 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 EventHandlerConfiguration in org.forgerock.audit.handlers.csv
Subclasses of EventHandlerConfiguration in org.forgerock.audit.handlers.csv Modifier and Type Class Description class
CsvAuditEventHandlerConfiguration
A configuration for CSV audit event handler. -
Uses of EventHandlerConfiguration in org.forgerock.audit.handlers.elasticsearch
Subclasses of EventHandlerConfiguration in org.forgerock.audit.handlers.elasticsearch Modifier and Type Class Description class
ElasticsearchAuditEventHandlerConfiguration
A configuration for Elasticsearch audit event handler. -
Uses of EventHandlerConfiguration in org.forgerock.audit.handlers.jdbc
Subclasses of EventHandlerConfiguration in org.forgerock.audit.handlers.jdbc Modifier and Type Class Description class
JdbcAuditEventHandlerConfiguration
Configures the JDBC mapping and connection pool. -
Uses of EventHandlerConfiguration in org.forgerock.audit.handlers.jms
Subclasses of EventHandlerConfiguration in org.forgerock.audit.handlers.jms Modifier and Type Class Description class
JmsAuditEventHandlerConfiguration
Configuration object for theJmsAuditEventHandler
. -
Uses of EventHandlerConfiguration in org.forgerock.audit.handlers.json
Subclasses of EventHandlerConfiguration in org.forgerock.audit.handlers.json Modifier and Type Class Description class
JsonAuditEventHandlerConfiguration
Configuration forJsonAuditEventHandler
. -
Uses of EventHandlerConfiguration in org.forgerock.audit.handlers.splunk
Subclasses of EventHandlerConfiguration in org.forgerock.audit.handlers.splunk Modifier and Type Class Description class
SplunkAuditEventHandlerConfiguration
Configuration for the splunk audit event handler. -
Uses of EventHandlerConfiguration in org.forgerock.audit.handlers.syslog
Subclasses of EventHandlerConfiguration in org.forgerock.audit.handlers.syslog Modifier and Type Class Description class
SyslogAuditEventHandlerConfiguration
Configuration object for theSyslogAuditEventHandler
. -
Uses of EventHandlerConfiguration in org.forgerock.audit.json
Methods in org.forgerock.audit.json with type parameters of type EventHandlerConfiguration Modifier and Type Method Description static <C extends EventHandlerConfiguration>
CAuditJsonConfig. parseAuditEventHandlerConfiguration(Class<C> clazz, JsonValue jsonConfig)
Returns the audit event handler configuration from the provided JSON string.
-