Uses of Class
org.forgerock.audit.AuditException
-
Packages that use AuditException Package Description org.forgerock.audit Package contains the AuditService.org.forgerock.audit.events.handlers This package contains the defaultAuditEventHandlers
.org.forgerock.audit.json This package contains utilities to build and configure audit service and handlers from JSON configuration. -
-
Uses of AuditException in org.forgerock.audit
Methods in org.forgerock.audit that throw AuditException Modifier and Type Method Description AuditServiceBuilder
AuditServiceBuilder. withAuditEventHandler(Class<? extends AuditEventHandler> clazz, EventHandlerConfiguration configuration)
Register an AuditEventHandler.AuditServiceBuilder
AuditServiceBuilder. withAuditEventHandler(AuditEventHandler auditEventHandler)
Register an AuditEventHandler. -
Uses of AuditException in org.forgerock.audit.events.handlers
Methods in org.forgerock.audit.events.handlers that throw AuditException 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 AuditException in org.forgerock.audit.json
Methods in org.forgerock.audit.json that throw AuditException Modifier and Type Method Description static JsonValue
AuditJsonConfig. getAuditEventHandlerConfigurationSchema(String className, ClassLoader classLoader)
Gets the configuration schema for an audit event handler as json schema.static JsonValue
AuditJsonConfig. getJson(InputStream input)
Returns a JSON value from the provided input stream.static <C extends EventHandlerConfiguration>
CAuditJsonConfig. parseAuditEventHandlerConfiguration(Class<C> clazz, JsonValue jsonConfig)
Returns the audit event handler configuration from the provided JSON string.static AuditServiceConfiguration
AuditJsonConfig. parseAuditServiceConfiguration(InputStream input)
Returns the audit service configuration from the provided input stream.static AuditServiceConfiguration
AuditJsonConfig. parseAuditServiceConfiguration(String json)
Returns the audit service configuration from the provided JSON string.static AuditServiceConfiguration
AuditJsonConfig. parseAuditServiceConfiguration(JsonValue json)
Returns the audit service configuration from the provided JSON value.static void
AuditJsonConfig. registerHandlerToService(JsonValue jsonConfig, AuditServiceBuilder auditServiceBuilder)
Configures and registers the audit event handler corresponding to the provided JSON configuration to the provided audit service.static void
AuditJsonConfig. registerHandlerToService(JsonValue jsonConfig, AuditServiceBuilder auditServiceBuilder, ClassLoader classLoader)
Configures and registers the audit event handler corresponding to the provided JSON configuration to the provided audit service, using a specific class loader.
-