public interface BeanConfiguration
Modifier and Type | Field and Description |
---|---|
static String |
AUTOWIRE_BY_NAME |
static String |
AUTOWIRE_BY_TYPE |
Modifier and Type | Method and Description |
---|---|
BeanConfiguration |
addProperty(String propertyName,
Object propertyValue)
Adds a property value to this bean
|
org.springframework.beans.factory.support.AbstractBeanDefinition |
getBeanDefinition() |
String |
getName() |
Object |
getPropertyValue(String name)
Returns the value of the given property or throws a MissingPropertyException
|
boolean |
hasProperty(String name)
Returns true if the bean config has the name property set
|
boolean |
isSingleton() |
BeanConfiguration |
setAbstract(boolean isAbstract)
Sets the BeanConfiguration as an Abstract bean definition
|
BeanConfiguration |
setAutowire(String type)
Sets the autowire type, either "byType" or "byName"
|
BeanConfiguration |
setDependsOn(String[] dependsOn)
Sets the names of the beans this bean configuration depends on
|
BeanConfiguration |
setDestroyMethod(String methodName)
Sets the name of the method to call when destroying the bean
|
BeanConfiguration |
setFactoryBean(String beanName) |
BeanConfiguration |
setFactoryMethod(String methodName) |
void |
setName(String beanName)
Sets the name of the bean in the app ctx
|
void |
setParent(Object name)
Sets the name of the parent bean
|
void |
setPropertyValue(String property,
Object newValue)
Sets a property value on the bean configuration
|
static final String AUTOWIRE_BY_TYPE
static final String AUTOWIRE_BY_NAME
String getName()
boolean isSingleton()
org.springframework.beans.factory.support.AbstractBeanDefinition getBeanDefinition()
BeanConfiguration addProperty(String propertyName, Object propertyValue)
propertyName
- The name of the propertypropertyValue
- The value of the propertyBeanConfiguration setDestroyMethod(String methodName)
methodName
- The method nameBeanConfiguration setDependsOn(String[] dependsOn)
dependsOn
- Bean names it depends onBeanConfiguration setFactoryBean(String beanName)
beanName
- BeanConfiguration setFactoryMethod(String methodName)
methodName
- BeanConfiguration setAutowire(String type)
type
- The typevoid setName(String beanName)
beanName
- The bean nameboolean hasProperty(String name)
name
- The name of the propertyObject getPropertyValue(String name)
name
- The name of the propertyvoid setPropertyValue(String property, Object newValue)
property
- The name of the propertynewValue
- The valueBeanConfiguration setAbstract(boolean isAbstract)
isAbstract
- Whether its abstract or notvoid setParent(Object name)
name
- Either a string which is the name of the bean, a RuntimeBeanReference or a BeanConfigurationCopyright © 2016. All rights reserved.