Package org.apache.xbean.spring.util
Interface SpringVisitor
- All Known Implementing Classes:
AbstractSpringVisitor
public interface SpringVisitor
Walks a spring bean factory tree.
- Since:
- 2.0
- Version:
- $Id$
- Author:
- Dain Sundstrom
-
Method Summary
Modifier and TypeMethodDescriptionvoidvisitBeanDefinition(String beanName, org.springframework.beans.factory.config.BeanDefinition beanDefinition, Object data) voidvisitBeanDefinition(org.springframework.beans.factory.config.BeanDefinition beanDefinition, Object data) voidvisitBeanDefinitionHolder(org.springframework.beans.factory.config.BeanDefinitionHolder beanDefinitionHolder, Object data) voidvisitBeanFactory(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanRegistry, Object data) voidvisitCollection(Collection collection, Object data) voidvisitConstructorArgumentValue(org.springframework.beans.factory.config.ConstructorArgumentValues.ValueHolder valueHolder, Object data) voidvisitConstructorArgumentValues(org.springframework.beans.factory.config.ConstructorArgumentValues constructorArgumentValues, Object data) voidvoidvisitMutablePropertyValues(org.springframework.beans.MutablePropertyValues propertyValues, Object data) voidvisitObject(Object value, Object data) voidvisitPropertyValue(org.springframework.beans.PropertyValue propertyValue, Object data) voidvisitRuntimeBeanReference(org.springframework.beans.factory.config.RuntimeBeanReference beanReference, Object data)
-
Method Details
-
visitBeanFactory
void visitBeanFactory(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanRegistry, Object data) throws org.springframework.beans.BeansException - Throws:
org.springframework.beans.BeansException
-
visitBeanDefinition
void visitBeanDefinition(String beanName, org.springframework.beans.factory.config.BeanDefinition beanDefinition, Object data) throws org.springframework.beans.BeansException - Throws:
org.springframework.beans.BeansException
-
visitBeanDefinition
void visitBeanDefinition(org.springframework.beans.factory.config.BeanDefinition beanDefinition, Object data) throws org.springframework.beans.BeansException - Throws:
org.springframework.beans.BeansException
-
visitMutablePropertyValues
void visitMutablePropertyValues(org.springframework.beans.MutablePropertyValues propertyValues, Object data) throws org.springframework.beans.BeansException - Throws:
org.springframework.beans.BeansException
-
visitConstructorArgumentValues
void visitConstructorArgumentValues(org.springframework.beans.factory.config.ConstructorArgumentValues constructorArgumentValues, Object data) throws org.springframework.beans.BeansException - Throws:
org.springframework.beans.BeansException
-
visitConstructorArgumentValue
void visitConstructorArgumentValue(org.springframework.beans.factory.config.ConstructorArgumentValues.ValueHolder valueHolder, Object data) throws org.springframework.beans.BeansException - Throws:
org.springframework.beans.BeansException
-
visitPropertyValue
void visitPropertyValue(org.springframework.beans.PropertyValue propertyValue, Object data) throws org.springframework.beans.BeansException - Throws:
org.springframework.beans.BeansException
-
visitRuntimeBeanReference
void visitRuntimeBeanReference(org.springframework.beans.factory.config.RuntimeBeanReference beanReference, Object data) throws org.springframework.beans.BeansException - Throws:
org.springframework.beans.BeansException
-
visitCollection
void visitCollection(Collection collection, Object data) throws org.springframework.beans.BeansException - Throws:
org.springframework.beans.BeansException
-
visitMap
- Throws:
org.springframework.beans.BeansException
-
visitObject
- Throws:
org.springframework.beans.BeansException
-
visitBeanDefinitionHolder
void visitBeanDefinitionHolder(org.springframework.beans.factory.config.BeanDefinitionHolder beanDefinitionHolder, Object data) throws org.springframework.beans.BeansException - Throws:
org.springframework.beans.BeansException
-