| uk.org.ponder.springutil.BeanDefinitionSource
All known Subclasses: uk.org.ponder.rsac.RSACBeanLocatorImpl,
BeanDefinitionSource | public interface BeanDefinitionSource (Code) | | An implementation of part of the non-bean-getting interface of
DefaultListableBeanFactory. Unfortunately all the good names are already
taken by Spring!
author: Antranig Basman (amb26@ponder.org.uk) |
Method Summary | |
abstract public String[] | beanNamesForClass(Class clazz) Returns a list of bean names which are known to correspond to beans
implementing or derived from the supplied class. | abstract public Class | getBeanClass(String beanname) Returns the class of this bean, if it can be statically determined,
null if it cannot (i.e. |
beanNamesForClass | abstract public String[] beanNamesForClass(Class clazz)(Code) | | Returns a list of bean names which are known to correspond to beans
implementing or derived from the supplied class. RSAC has tried slightly
harder to resolve bean classes than Spring generally does, through walking
chains of factory-methods.
Parameters: clazz - A class or interface class to be searched for. A list of derived bean names. |
getBeanClass | abstract public Class getBeanClass(String beanname)(Code) | | Returns the class of this bean, if it can be statically determined,
null if it cannot (i.e. this bean is the product of a
factory-method of a class which is not yet known).
Parameters: beanname - |
|
|