Package org.opends.server.extensions
Class EntryCacheCommon
- java.lang.Object
-
- org.opends.server.extensions.EntryCacheCommon
-
public final class EntryCacheCommon extends Object
This class provides some common tools to all entry cache implementations.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static org.opends.server.extensions.EntryCacheCommon.ConfigErrorHandler
getConfigErrorHandler(org.opends.server.extensions.EntryCacheCommon.ConfigPhase configPhase, List<LocalizableMessage> unacceptableReasons, List<LocalizableMessage> errorMessages)
Create a new error handler.static Set<Filter>
toFilters(SortedSet<String> filters, LocalizableMessageDescriptor.Arg3<Object,Object,Object> decodeErrorMsg, org.opends.server.extensions.EntryCacheCommon.ConfigErrorHandler errorHandler, Dn configEntryDN)
Reads a list of string filters and convert it to a list of search filters.
-
-
-
Method Detail
-
toFilters
public static Set<Filter> toFilters(SortedSet<String> filters, LocalizableMessageDescriptor.Arg3<Object,Object,Object> decodeErrorMsg, org.opends.server.extensions.EntryCacheCommon.ConfigErrorHandler errorHandler, Dn configEntryDN)
Reads a list of string filters and convert it to a list of search filters.- Parameters:
filters
- the list of string filter to convert to search filtersdecodeErrorMsg
- the error message ID to use in case of errorerrorHandler
- error handler to report filter decoding errors onconfigEntryDN
- the entry cache configuration DN- Returns:
- the set of search filters
-
getConfigErrorHandler
public static org.opends.server.extensions.EntryCacheCommon.ConfigErrorHandler getConfigErrorHandler(org.opends.server.extensions.EntryCacheCommon.ConfigPhase configPhase, List<LocalizableMessage> unacceptableReasons, List<LocalizableMessage> errorMessages)
Create a new error handler.- Parameters:
configPhase
- the configuration phase for which the error handler is usedunacceptableReasons
- the reasons why the configuration cannot be applied (during PHASE_ACCEPTABLE phase)errorMessages
- the errors found when applying a new configuration (during PHASE_APPLY phase)- Returns:
- a new configuration error handler
-
-