| java.lang.Object org.springframework.beans.factory.config.BeanDefinitionHolder
All known Subclasses: org.springframework.beans.factory.parsing.BeanComponentDefinition,
BeanDefinitionHolder | public BeanDefinitionHolder(BeanDefinition beanDefinition, String beanName)(Code) | | Create a new BeanDefinitionHolder.
Parameters: beanDefinition - the BeanDefinition to wrap Parameters: beanName - the name of the bean, as specified for the bean definition |
BeanDefinitionHolder | public BeanDefinitionHolder(BeanDefinition beanDefinition, String beanName, String[] aliases)(Code) | | Create a new BeanDefinitionHolder.
Parameters: beanDefinition - the BeanDefinition to wrap Parameters: beanName - the name of the bean, as specified for the bean definition Parameters: aliases - alias names for the bean, or null if none |
BeanDefinitionHolder | public BeanDefinitionHolder(BeanDefinitionHolder beanDefinitionHolder)(Code) | | Copy constructor: Create a new BeanDefinitionHolder with the
same contents as the given BeanDefinitionHolder instance.
Note: The wrapped BeanDefinition reference is taken as-is;
it is not deeply copied.
Parameters: beanDefinitionHolder - the BeanDefinitionHolder to copy |
getAliases | public String[] getAliases()(Code) | | Return the alias names for the bean, as specified directly for the bean definition.
the array of alias names, or null if none |
getBeanName | public String getBeanName()(Code) | | Return the primary name of the bean, as specified for the bean definition.
|
hashCode | public int hashCode()(Code) | | |
|
|