| java.lang.Object org.springframework.beans.factory.wiring.BeanWiringInfo
Field Summary | |
final public static int | AUTOWIRE_BY_NAME Constant that indicates autowiring bean properties by name. | final public static int | AUTOWIRE_BY_TYPE Constant that indicates autowiring bean properties by type. |
Constructor Summary | |
public | BeanWiringInfo(String beanName) Create a new BeanWiringInfo that points to the given bean name. | public | BeanWiringInfo(int autowireMode, boolean dependencyCheck) Create a new BeanWiringInfo that indicates autowiring. |
BeanWiringInfo | public BeanWiringInfo(String beanName)(Code) | | Create a new BeanWiringInfo that points to the given bean name.
Parameters: beanName - the name of the bean definition to take the property values from throws: IllegalArgumentException - if the supplied beanName is null ,is empty, or consists wholly of whitespace |
getBeanName | public String getBeanName()(Code) | | Return the specific bean name that this BeanWiringInfo points to, if any.
|
getDependencyCheck | public boolean getDependencyCheck()(Code) | | Return whether to perform a dependency check for object references
in the bean instance (after autowiring).
|
indicatesAutowiring | public boolean indicatesAutowiring()(Code) | | Return whether this BeanWiringInfo indicates autowiring.
|
|
|