Package org.forgerock.opendj.server.core
Interface DataProviderEventListener
-
public interface DataProviderEventListenerAn object that registers to be notified of events generated by aDataProviderConnectionobject. Data provider events may be triggered as a result of:- The data provider connection being closed.
- An operational error. For example, a proxy data provider might lose connectivity with the remote server.
- A configuration change. For example, a data provider may be disabled, or have a new base DN added.
- An administrative action. For example, a data provider may be temporarily disabled during an import or restore from backup.
DataProviderCfg.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleDataProviderEvent(DataProviderEvent event)The data provider has changed state due to an operational error, configuration change, or an administrative action.
-
-
-
Method Detail
-
handleDataProviderEvent
void handleDataProviderEvent(DataProviderEvent event)
The data provider has changed state due to an operational error, configuration change, or an administrative action.Implementations should examine the provided
DataProviderEventin order to determine how the data provider has changed.- Parameters:
event- The data provider event.
-
-