Interface BeanNativeConfigurationProcessor
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface BeanNativeConfigurationProcessor
Process abean instance
and register the need for native configuration. Implementation of this interface can also implementBeanFactoryAware
if they need to access the underlying bean factory.- Author:
- Stephane Nicoll
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
process(BeanInstanceDescriptor descriptor, NativeConfigurationRegistry registry)
Process the specified bean and register the need for native configuration.
-
-
-
Method Detail
-
process
void process(BeanInstanceDescriptor descriptor, NativeConfigurationRegistry registry)
Process the specified bean and register the need for native configuration.- Parameters:
descriptor
- the bean instance descriptorregistry
- the registry to use
-
-