Interface DeferredImportSelector.Group
- Enclosing interface:
- DeferredImportSelector
public static interface DeferredImportSelector.Group
Interface used to group results from different import selectors.
- Since:
- 5.0
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic class
An entry that holds theAnnotationMetadata
of the importingConfiguration
class and the class name to import. -
Method Summary
Modifier and TypeMethodDescriptionvoid
process
(AnnotationMetadata metadata, DeferredImportSelector selector) Process theAnnotationMetadata
of the importing @Configuration
class using the specifiedDeferredImportSelector
.Return theentries
of which class(es) should be imported for this group.
-
Method Details
-
process
Process theAnnotationMetadata
of the importing @Configuration
class using the specifiedDeferredImportSelector
. -
selectImports
Iterable<DeferredImportSelector.Group.Entry> selectImports()Return theentries
of which class(es) should be imported for this group.
-