Package org.alfresco.repo.dictionary
Interface DictionaryListener
-
- All Known Subinterfaces:
ExtendedDictionaryListener
- All Known Implementing Classes:
CMISAbstractDictionaryService
,CMISStrictDictionaryService
,DictionaryBootstrap
public interface DictionaryListener
Dictionary Listener interface.This interface allows Dictionary Listeners to register with the DictionaryService.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterDictionaryDestroy()
Callback once dictionary destroy is complete (executed in the current tenant context)void
afterDictionaryInit()
Callback once dictionary initialisation is complete (executed in the current tenant context)void
onDictionaryInit()
Callback for (re-)initialising the Dictionary caches (executed in the current tenant context)
-
-
-
Method Detail
-
onDictionaryInit
void onDictionaryInit()
Callback for (re-)initialising the Dictionary caches (executed in the current tenant context)
-
afterDictionaryDestroy
void afterDictionaryDestroy()
Callback once dictionary destroy is complete (executed in the current tenant context)
-
afterDictionaryInit
void afterDictionaryInit()
Callback once dictionary initialisation is complete (executed in the current tenant context)
-
-