interface BeanPostProcessor
Interface to post-process beans.
Beans implementing this interface are applied automatically when registered at a BeanRegistry.
Author
Christopher Frieler
abstract fun <T : Any> postProcessBean(name: String, bean: T): T
Allows to post-process beans of a BeanRegistry. |
class BeansOfTypeConsumer<Type : Any> : BeanPostProcessor
BeanPostProcessor to consume all beans of a certain type (including all its subtypes). |