Interface ReaderEventListener
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
EmptyReaderEventListener
Interface that receives callbacks for component, alias and import
registrations during a bean definition reading process.
- Since:
- 2.0
- Author:
- Rob Harrop, Juergen Hoeller
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidaliasRegistered(AliasDefinition aliasDefinition) Notification that the given alias has been registered.voidcomponentRegistered(ComponentDefinition componentDefinition) Notification that the given component has been registered.voiddefaultsRegistered(DefaultsDefinition defaultsDefinition) Notification that the given defaults has been registered.voidimportProcessed(ImportDefinition importDefinition) Notification that the given import has been processed.
-
Method Details
-
defaultsRegistered
Notification that the given defaults has been registered.- Parameters:
defaultsDefinition- a descriptor for the defaults- See Also:
-
componentRegistered
Notification that the given component has been registered.- Parameters:
componentDefinition- a descriptor for the new component- See Also:
-
aliasRegistered
Notification that the given alias has been registered.- Parameters:
aliasDefinition- a descriptor for the new alias
-
importProcessed
Notification that the given import has been processed.- Parameters:
importDefinition- a descriptor for the import
-