|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface BeanConfiguration
An interface that represent a runtime bean configuration Credit must go to Solomon Duskis and the article: http://jroller.com/page/Solomon?entry=programmatic_configuration_in_spring
Field Summary | |
---|---|
static java.lang.String |
AUTOWIRE_BY_NAME
|
static java.lang.String |
AUTOWIRE_BY_TYPE
|
Method Summary | |
---|---|
BeanConfiguration |
addProperty(java.lang.String propertyName,
java.lang.Object propertyValue)
Adds a property value to this bean |
org.springframework.beans.factory.support.AbstractBeanDefinition |
getBeanDefinition()
|
java.lang.String |
getName()
|
java.lang.Object |
getPropertyValue(java.lang.String name)
Returns the value of the given property or throws a MissingPropertyException |
boolean |
hasProperty(java.lang.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(java.lang.String type)
Sets the autowire type, either "byType" or "byName" |
BeanConfiguration |
setDependsOn(java.lang.String[] dependsOn)
Sets the names of the beans this bean configuration depends on |
BeanConfiguration |
setDestroyMethod(java.lang.String methodName)
Sets the name of the method to call when destroying the bean |
BeanConfiguration |
setFactoryBean(java.lang.String beanName)
|
BeanConfiguration |
setFactoryMethod(java.lang.String methodName)
|
void |
setName(java.lang.String beanName)
Sets the name of the bean in the app ctx |
void |
setParent(java.lang.Object name)
Sets the name of the parent bean |
void |
setPropertyValue(java.lang.String property,
java.lang.Object newValue)
Sets a property value on the bean configuration |
Field Detail |
---|
static final java.lang.String AUTOWIRE_BY_TYPE
static final java.lang.String AUTOWIRE_BY_NAME
Method Detail |
---|
java.lang.String getName()
boolean isSingleton()
org.springframework.beans.factory.support.AbstractBeanDefinition getBeanDefinition()
BeanConfiguration addProperty(java.lang.String propertyName, java.lang.Object propertyValue)
propertyName
- The name of the propertypropertyValue
- The value of the property
BeanConfiguration setDestroyMethod(java.lang.String methodName)
methodName
- The method name
BeanConfiguration setDependsOn(java.lang.String[] dependsOn)
dependsOn
- Bean names it depends on
BeanConfiguration setFactoryBean(java.lang.String beanName)
beanName
-
BeanConfiguration setFactoryMethod(java.lang.String methodName)
methodName
-
BeanConfiguration setAutowire(java.lang.String type)
type
- The type
void setName(java.lang.String beanName)
beanName
- The bean nameboolean hasProperty(java.lang.String name)
name
- The name of the property
java.lang.Object getPropertyValue(java.lang.String name)
name
- The name of the property
void setPropertyValue(java.lang.String property, java.lang.Object newValue)
property
- The name of the propertynewValue
- The valueBeanConfiguration setAbstract(boolean isAbstract)
isAbstract
- Whether its abstract or not
void setParent(java.lang.Object name)
name
- Either a string which is the name of the bean, a RuntimeBeanReference or a BeanConfiguration
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |