Uses of Class
org.apache.commons.configuration2.event.ConfigurationErrorEvent
Packages that use ConfigurationErrorEvent
Package
Description
The Configuration main package.
This package contains interfaces and classes for receiving notifications about changes at configurations.
-
Uses of ConfigurationErrorEvent in org.apache.commons.configuration2
Fields in org.apache.commons.configuration2 with type parameters of type ConfigurationErrorEventModifier and TypeFieldDescriptionprivate final EventType<? extends ConfigurationErrorEvent>
DatabaseConfiguration.JdbcOperation.errorEventType
The type of the event to send in case of an error.Constructor parameters in org.apache.commons.configuration2 with type arguments of type ConfigurationErrorEventModifierConstructorDescriptionprotected
JdbcOperation
(EventType<? extends ConfigurationErrorEvent> errEvType, EventType<?> opType, String errPropName, Object errPropVal) Creates a new instance ofJdbcOperation
and initializes the properties related to the error event. -
Uses of ConfigurationErrorEvent in org.apache.commons.configuration2.event
Fields in org.apache.commons.configuration2.event with type parameters of type ConfigurationErrorEventModifier and TypeFieldDescriptionstatic final EventType<ConfigurationErrorEvent>
ConfigurationErrorEvent.ANY
Constant for the common event type for all error events.static final EventType<ConfigurationErrorEvent>
ConfigurationErrorEvent.READ
Constant for the event type indicating a read error.static final EventType<ConfigurationErrorEvent>
ConfigurationErrorEvent.WRITE
Constant for the event type indicating a write error.Methods in org.apache.commons.configuration2.event with type parameters of type ConfigurationErrorEventModifier and TypeMethodDescription<T extends ConfigurationErrorEvent>
voidBaseEventSource.fireError
(EventType<T> eventType, EventType<?> operationType, String propertyName, Object propertyValue, Throwable cause) Creates an error event object and delivers it to all registered error listeners of a matching type.Methods in org.apache.commons.configuration2.event that return ConfigurationErrorEventModifier and TypeMethodDescriptionprotected ConfigurationErrorEvent
BaseEventSource.createErrorEvent
(EventType<? extends ConfigurationErrorEvent> type, EventType<?> opType, String propName, Object propValue, Throwable ex) Creates aConfigurationErrorEvent
object based on the passed in parameters.Method parameters in org.apache.commons.configuration2.event with type arguments of type ConfigurationErrorEventModifier and TypeMethodDescriptionprotected ConfigurationErrorEvent
BaseEventSource.createErrorEvent
(EventType<? extends ConfigurationErrorEvent> type, EventType<?> opType, String propName, Object propValue, Throwable ex) Creates aConfigurationErrorEvent
object based on the passed in parameters.Constructor parameters in org.apache.commons.configuration2.event with type arguments of type ConfigurationErrorEventModifierConstructorDescriptionConfigurationErrorEvent
(Object source, EventType<? extends ConfigurationErrorEvent> eventType, EventType<?> operationType, String propName, Object propValue, Throwable cause) Creates a new instance ofConfigurationErrorEvent
and sets all its properties.