Package io.micronaut.context.visitor
Interface BeanImportHandler
public interface BeanImportHandler
Interface that allows extension of Bean import handling in other to support
 other injection systems beyond JSR-330 in downstream modules.
- Since:
 - 3.0.0
 - Author:
 - graemerocher
 
- 
Method Summary
Modifier and TypeMethodDescriptionvoidbeanAdded(BeanElementBuilder beanElementBuilder, VisitorContext context) Callback method invoked when a bean is added. 
- 
Method Details
- 
getSupportedAnnotationNames
- Returns:
 - The supported annotation names.
 
 - 
beanAdded
Callback method invoked when a bean is added.- Parameters:
 beanElementBuilder- The bean element buildercontext- The visitor context
 
 -