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
Modifier and TypeMethodDescriptionvoidCallback once dictionary destroy is complete (executed in the current tenant context)voidCallback once dictionary initialisation is complete (executed in the current tenant context)voidCallback for (re-)initialising the Dictionary caches (executed in the current tenant context)
-
Method Details
-
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)
-