spring-framework / org.springframework.beans / ExtendedBeanInfoFactory

ExtendedBeanInfoFactory

open class ExtendedBeanInfoFactory : BeanInfoFactory, Ordered

BeanInfoFactory implementation that evaluates whether bean classes have "non-standard" JavaBeans setter methods and are thus candidates for introspection by Spring's (package-visible) ExtendedBeanInfo implementation.

Ordered at Ordered#LOWEST_PRECEDENCE to allow other user-defined BeanInfoFactory types to take precedence.

Author
Chris Beams

Since
3.2

See Also
BeanInfoFactoryCachedIntrospectionResults

Constructors

<init>

ExtendedBeanInfoFactory()

BeanInfoFactory implementation that evaluates whether bean classes have "non-standard" JavaBeans setter methods and are thus candidates for introspection by Spring's (package-visible) ExtendedBeanInfo implementation.

Ordered at Ordered#LOWEST_PRECEDENCE to allow other user-defined BeanInfoFactory types to take precedence.

Functions

getBeanInfo

open fun getBeanInfo(beanClass: Class<*>): BeanInfo

Return an ExtendedBeanInfo for the given bean class, if applicable.

getOrder

open fun getOrder(): Int