Interface ImportSelector
- All Known Subinterfaces:
DeferredImportSelector
- All Known Implementing Classes:
AdviceModeImportSelector,AsyncConfigurationSelector,CachingConfigurationSelector,TransactionManagementConfigurationSelector
public interface ImportSelector
Interface to be implemented by types that determine which @Configurationclass(es) should be imported based on a given selection criteria, usually one or more annotation attributes.An
ImportSelectormay implement any of the followingAwareinterfaces, and their respective methods will be called prior toselectImports(org.springframework.core.type.AnnotationMetadata):ImportSelectorimplementations are usually processed in the same way as regular@Importannotations, however, it is also possible to defer selection of imports until all@Configurationclasses have been processed (seeDeferredImportSelectorfor details).- Since:
- 3.1
- Author:
- Chris Beams
- See Also:
DeferredImportSelector,Import,ImportBeanDefinitionRegistrar,Configuration
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String[]selectImports(AnnotationMetadata importingClassMetadata)Select and return the names of which class(es) should be imported based on theAnnotationMetadataof the importing @Configurationclass.
Method Detail
selectImports
String[] selectImports(AnnotationMetadata importingClassMetadata)
Select and return the names of which class(es) should be imported based on theAnnotationMetadataof the importing @Configurationclass.- Returns:
- the class names, or an empty array if none