Class ClassNameBeanWiringInfoResolver
java.lang.Object
org.springframework.beans.factory.wiring.ClassNameBeanWiringInfoResolver
- All Implemented Interfaces:
 BeanWiringInfoResolver
Simple default implementation of the 
BeanWiringInfoResolver interface,
 looking for a bean with the same name as the fully-qualified class name.
 This matches the default name of the bean in a Spring XML file if the
 bean tag's "id" attribute is not used.- Since:
 - 2.0
 - Author:
 - Rod Johnson, Juergen Hoeller
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionresolveWiringInfo(Object beanInstance) Resolve the BeanWiringInfo for the given bean instance. 
- 
Constructor Details
- 
ClassNameBeanWiringInfoResolver
public ClassNameBeanWiringInfoResolver() 
 - 
 - 
Method Details
- 
resolveWiringInfo
Description copied from interface:BeanWiringInfoResolverResolve the BeanWiringInfo for the given bean instance.- Specified by:
 resolveWiringInfoin interfaceBeanWiringInfoResolver- Parameters:
 beanInstance- the bean instance to resolve info for- Returns:
 - the BeanWiringInfo, or 
nullif not found 
 
 -