A B C D E F G H I J L M N O P R S T V W

A

AbstractStringBasedValueSource - Class in org.springframework.config.java.valuesource
 
AbstractStringBasedValueSource() - Constructor for class org.springframework.config.java.valuesource.AbstractStringBasedValueSource
 
add(ValueSource) - Method in class org.springframework.config.java.valuesource.CompositeValueSource
 
addConfigClass(Class<?>) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
Allows for incrementally building up the configuration classes to be processed by this context.
addValueSource(ValueSource) - Method in class org.springframework.config.java.process.ConfigurationProcessor
 
afterPropertiesSet() - Method in class org.springframework.config.java.process.ConfigurationProcessor
Called to avoid constructor changes every time a new configuration switch appears on this class.
AnnotationApplicationContext - Class in org.springframework.config.java.context
Deprecated. - Favor use of JavaConfigApplicationContext. This class will be eliminated before the 1.0 release of JavaConfig
AnnotationApplicationContext() - Constructor for class org.springframework.config.java.context.AnnotationApplicationContext
Deprecated. Create a new AnnotationApplicationContext w/o any settings.
AnnotationApplicationContext(ApplicationContext) - Constructor for class org.springframework.config.java.context.AnnotationApplicationContext
Deprecated. Create a new AnnotationApplicationContext with the given parent.
AnnotationApplicationContext(String...) - Constructor for class org.springframework.config.java.context.AnnotationApplicationContext
Deprecated. Create a new AnnotationApplicationContext from the given locations (AbstractApplicationContext.refresh() is being called).
AnnotationApplicationContext(Class<?>...) - Constructor for class org.springframework.config.java.context.AnnotationApplicationContext
Deprecated. Create a new AnnotationApplicationContext from the given classes (AbstractApplicationContext.refresh() is being called).
AnnotationApplicationContext(ApplicationContext, Class<?>...) - Constructor for class org.springframework.config.java.context.AnnotationApplicationContext
Deprecated. Create a new AnnotationApplicationContext with the given parent and classes.
AnnotationApplicationContext(ApplicationContext, String...) - Constructor for class org.springframework.config.java.context.AnnotationApplicationContext
Deprecated. Create a new AnnotationApplicationContext with the given parent and base packages.
AutoBean - Annotation Type in org.springframework.config.java.annotation
Annotation used to indicate a bean that is automatically instantiated (using the default constructor) and autowired.
AutoBeanMethodProcessor - Class in org.springframework.config.java.core
 
AutoBeanMethodProcessor() - Constructor for class org.springframework.config.java.core.AutoBeanMethodProcessor
 

B

Bean - Annotation Type in org.springframework.config.java.annotation
Annotation to be applied to methods that create beans in a Spring context.
BeanMethodProcessor - Interface in org.springframework.config.java.core
 
BeanMethodReturnValueProcessor - Interface in org.springframework.config.java.core
 
BeanNameTrackingDefaultListableBeanFactory - Class in org.springframework.config.java.core
BeanFactory which keeps track of getBean() calls.
BeanNameTrackingDefaultListableBeanFactory(ConfigurableListableBeanFactory) - Constructor for class org.springframework.config.java.core.BeanNameTrackingDefaultListableBeanFactory
 
BeanNamingStrategy - Interface in org.springframework.config.java.naming
Strategy interface for constructing a bean name from the java method.
booleanValue() - Method in enum org.springframework.config.java.annotation.Lazy
 
booleanValue() - Method in enum org.springframework.config.java.annotation.Primary
 

C

CglibConfigurationEnhancer - Class in org.springframework.config.java.enhancement.cglib
ConfigurationEnhancer implementation that uses CGLIB to subclass and enhance a target Configuration class.
CglibConfigurationEnhancer(ConfigurableListableBeanFactory, BeanNameTrackingDefaultListableBeanFactory, BeanNamingStrategy, List<BeanMethodReturnValueProcessor>, ValueSource) - Constructor for class org.springframework.config.java.enhancement.cglib.CglibConfigurationEnhancer
 
ChainedStrategy - Class in org.springframework.config.java.naming
Chain-like implementation naming strategy.
ChainedStrategy(BeanNamingStrategy[]) - Constructor for class org.springframework.config.java.naming.ChainedStrategy
 
CompositeValueSource - Class in org.springframework.config.java.valuesource
 
CompositeValueSource() - Constructor for class org.springframework.config.java.valuesource.CompositeValueSource
 
Configuration - Annotation Type in org.springframework.config.java.annotation
Annotation for a configuration class.
ConfigurationEnhancer - Interface in org.springframework.config.java.enhancement
Decorate the given configuration class for usage inside Spring application context.
ConfigurationPostProcessor - Class in org.springframework.config.java.process
Post processor for use in a bean factory that can process multiple configuration beans.
ConfigurationPostProcessor() - Constructor for class org.springframework.config.java.process.ConfigurationPostProcessor
 
ConfigurationProcessor - Class in org.springframework.config.java.process
For internal use only.
ConfigurationProcessor(ConfigurableApplicationContext) - Constructor for class org.springframework.config.java.process.ConfigurationProcessor
Constructor taking an application context as parameter.
ConfigurationProcessor(ConfigurableListableBeanFactory) - Constructor for class org.springframework.config.java.process.ConfigurationProcessor
Create a configuration processor.
ConfigurationSupport - Class in org.springframework.config.java.support
Convenient base class for Configurations, allowing easy lookup of beans in the owning factory
ConfigurationSupport() - Constructor for class org.springframework.config.java.support.ConfigurationSupport
 
Constants - Class in org.springframework.config.java.core
 
createNewOrGetCachedSingletonBean(String, EnhancerMethodInvoker) - Method in class org.springframework.config.java.core.StandardBeanMethodProcessor
 

D

DefaultScopes - Class in org.springframework.config.java.util
Constant class contains the names of the scopes supported out of the box in Spring 2.0.
DefaultScopes() - Constructor for class org.springframework.config.java.util.DefaultScopes
 
DependencyCheck - Enum in org.springframework.config.java.annotation
Annotation representing a Spring IoC dependency check status.

E

enhanceConfiguration(Class<T>) - Method in class org.springframework.config.java.enhancement.cglib.CglibConfigurationEnhancer
 
enhanceConfiguration(Class<T>) - Method in interface org.springframework.config.java.enhancement.ConfigurationEnhancer
Return an enhanced version of the given configuration instance and class.
EnhancerMethodInvoker - Interface in org.springframework.config.java.core
Invoking interface for bypassing the decorated class.
ExternalBean - Annotation Type in org.springframework.config.java.annotation
Annotation used to indicate an external bean, that must be supplied by the environment.
ExternalBeanMethodProcessor - Class in org.springframework.config.java.core
BeanMethodProcessor capable of processing ExternalBean-annotated methods.
ExternalBeanMethodProcessor(BeanFactory, BeanNamingStrategy) - Constructor for class org.springframework.config.java.core.ExternalBeanMethodProcessor
 
ExternalValue - Annotation Type in org.springframework.config.java.annotation
Annotation used to identify an external value on a method
ExternalValueMethodProcessor - Class in org.springframework.config.java.core
 
ExternalValueMethodProcessor(ValueSource) - Constructor for class org.springframework.config.java.core.ExternalValueMethodProcessor
 

F

findAutoBeanCreationMethods(Class<?>) - Static method in class org.springframework.config.java.core.AutoBeanMethodProcessor
Find all methods that are annotated with AutoBean.
findBeanCreationMethods(Class<?>) - Static method in class org.springframework.config.java.core.StandardBeanMethodProcessor
 
findExternalBeanCreationMethods(Class<?>) - Static method in class org.springframework.config.java.core.ExternalBeanMethodProcessor
Find all methods that are annotated with ExternalBean.
findExternalValueCreationMethods(Class<?>) - Static method in class org.springframework.config.java.core.ExternalValueMethodProcessor
 
finishRefresh() - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 

G

generateBeanDefinitionFromBeanCreationMethod(ConfigurableListableBeanFactory, String, Class<?>, String, Method, Bean) - Method in class org.springframework.config.java.process.ConfigurationProcessor
Generate the actual bean definition using the given method.
generateBeanDefinitions(String, Class<?>) - Method in class org.springframework.config.java.process.ConfigurationProcessor
Modify metadata by emitting new bean definitions based on the bean creation methods in this Java bytecode.
getApplicationContext() - Method in class org.springframework.config.java.support.ConfigurationSupport
Deprecated. 
getBasePackages() - Method in class org.springframework.config.java.context.AnnotationApplicationContext
Deprecated.  
getBasePackages() - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
getBean(Class<T>) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
getBean(Class<T>, String) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
getBean(Class<T>) - Method in class org.springframework.config.java.context.JavaConfigWebApplicationContext
 
getBean(Class<T>, String) - Method in class org.springframework.config.java.context.JavaConfigWebApplicationContext
 
getBean(ListableBeanFactory, Class<T>) - Static method in class org.springframework.config.java.context.TypeSafeBeanFactoryUtils
 
getBean(ListableBeanFactory, Class<T>, String) - Static method in class org.springframework.config.java.context.TypeSafeBeanFactoryUtils
 
getBean(String) - Method in class org.springframework.config.java.core.BeanNameTrackingDefaultListableBeanFactory
 
getBean(String) - Method in class org.springframework.config.java.support.ConfigurationSupport
 
getBean(Class<T>) - Method in class org.springframework.config.java.support.ConfigurationSupport
 
getBean(Class<T>, String) - Method in class org.springframework.config.java.support.ConfigurationSupport
 
getBeanFactory() - Method in class org.springframework.config.java.support.ConfigurationSupport
 
getBeanName(Method) - Method in class org.springframework.config.java.core.StandardBeanMethodProcessor
 
getBeanName(Method) - Method in interface org.springframework.config.java.naming.BeanNamingStrategy
Create the bean name based on the given method.
getBeanName(Method) - Method in class org.springframework.config.java.naming.ChainedStrategy
 
getBeanName(Method) - Method in class org.springframework.config.java.naming.MethodNameStrategy
 
getChildBeanFactory() - Method in class org.springframework.config.java.process.ConfigurationProcessor
 
getConfigClasses() - Method in class org.springframework.config.java.context.AnnotationApplicationContext
Deprecated.  
getConfigClasses() - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
getConfigured(Object) - Method in class org.springframework.config.java.support.ConfigurationSupport
Invoke callbacks on the object, as though it was configured in the factory
getMethod() - Method in interface org.springframework.config.java.core.EnhancerMethodInvoker
The method used for invocation.
getObject(FactoryBean) - Method in class org.springframework.config.java.support.ConfigurationSupport
Return the object created by this FactoryBean instance, first invoking any container callbacks on the instance
getOrder() - Method in class org.springframework.config.java.process.ConfigurationPostProcessor
Guarantee to execute before any other BeanFactoryPostProcessors
getResourceLoader() - Method in class org.springframework.config.java.process.ConfigurationProcessor
 
getString(String) - Method in class org.springframework.config.java.valuesource.AbstractStringBasedValueSource
 
getString(String) - Method in class org.springframework.config.java.valuesource.MessageSourceValueSource
 
getString(String) - Method in class org.springframework.config.java.valuesource.PropertiesValueSource
 
getValueName() - Method in exception org.springframework.config.java.valuesource.ValueResolutionException
 

H

HotSwappable - Annotation Type in org.springframework.config.java.annotation.aop.targetsource
Annotation indicating hot swappable beans.

I

Import - Annotation Type in org.springframework.config.java.annotation
Annotation for importing other Configuration classes.
initConfigLocations() - Method in class org.springframework.config.java.context.JavaConfigWebApplicationContext
 
invokeOriginalClass() - Method in interface org.springframework.config.java.core.EnhancerMethodInvoker
Invoke the original (non decorated) code.
isAutoBeanCreationMethod(Method) - Static method in class org.springframework.config.java.core.AutoBeanMethodProcessor
 
isBeanCreationMethod(Method) - Static method in class org.springframework.config.java.core.StandardBeanMethodProcessor
 
isConfigurationClass(Class<?>) - Static method in class org.springframework.config.java.process.ConfigurationProcessor
Check if the given class is a configuration.
isExternalBeanCreationMethod(Method) - Static method in class org.springframework.config.java.core.ExternalBeanMethodProcessor
Check whether candidateMethod is an ExternalBean method.
isExternalValueCreationMethod(Method) - Static method in class org.springframework.config.java.core.ExternalValueMethodProcessor
 
isScopedProxyMethod(Method) - Static method in class org.springframework.config.java.core.ScopedProxyMethodProcessor
 

J

JAVA_CONFIG_PKG - Static variable in class org.springframework.config.java.core.Constants
 
JavaConfigApplicationContext - Class in org.springframework.config.java.context

Application context that looks for classes annotated with the Configuration annotation and registers the Beans they define; is the primary programmatic resource for using Spring JavaConfig.

JavaConfigApplicationContext() - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
requires calling refresh() TODO: finish doc
JavaConfigApplicationContext(ApplicationContext) - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
requires calling refresh() TODO: finish doc
JavaConfigApplicationContext(String...) - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
 
JavaConfigApplicationContext(Class<?>...) - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
 
JavaConfigApplicationContext(ApplicationContext, Class<?>...) - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
 
JavaConfigApplicationContext(ApplicationContext, String...) - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
 
JavaConfigApplicationContext(Class<?>[], String[]) - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
 
JavaConfigApplicationContext(ApplicationContext, Class<?>[], String[]) - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
TODO: Document
JavaConfigWebApplicationContext - Class in org.springframework.config.java.context
JavaConfig ApplicationContext implementation for use in the web tier.
JavaConfigWebApplicationContext() - Constructor for class org.springframework.config.java.context.JavaConfigWebApplicationContext
 

L

lastRequestedBeanName() - Method in class org.springframework.config.java.core.BeanNameTrackingDefaultListableBeanFactory
 
Lazy - Enum in org.springframework.config.java.annotation
Lazy instantiation options.
loadBeanDefinitions(DefaultListableBeanFactory) - Method in class org.springframework.config.java.context.AnnotationApplicationContext
Deprecated.  
loadBeanDefinitions(DefaultListableBeanFactory) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
loadBeanDefinitions(DefaultListableBeanFactory) - Method in class org.springframework.config.java.context.JavaConfigWebApplicationContext
Processes contents of configLocations, setting the values of configClasses and basePackages appropriately.
log - Variable in class org.springframework.config.java.process.ConfigurationPostProcessor
 
log - Variable in class org.springframework.config.java.process.ConfigurationProcessor
 

M

MessageSourceValueSource - Class in org.springframework.config.java.valuesource
 
MessageSourceValueSource(MessageSource) - Constructor for class org.springframework.config.java.valuesource.MessageSourceValueSource
 
Meta - Annotation Type in org.springframework.config.java.annotation
Bean metadata annotation.
MethodBeanWrapper - Class in org.springframework.config.java.core
Wrapper for the result returned by the method backing a bean instance.
MethodBeanWrapper(BeanFactory, BeanNameTrackingDefaultListableBeanFactory, Collection<BeanMethodReturnValueProcessor>) - Constructor for class org.springframework.config.java.core.MethodBeanWrapper
Constructor.
MethodNameStrategy - Class in org.springframework.config.java.naming
Naming strategy which uses the method name for generating the bean name.
MethodNameStrategy() - Constructor for class org.springframework.config.java.naming.MethodNameStrategy
Default, empty constructor.
MethodNameStrategy(MethodNameStrategy.Prefix) - Constructor for class org.springframework.config.java.naming.MethodNameStrategy
Constructor allowing the naming prefix to be specified.
MethodNameStrategy.Prefix - Enum in org.springframework.config.java.naming
Naming prefix.

N

names() - Static method in class org.springframework.config.java.core.BeanNameTrackingDefaultListableBeanFactory
 

O

org.springframework.config.java.annotation - package org.springframework.config.java.annotation
Java configuration annotations.
org.springframework.config.java.annotation.aop - package org.springframework.config.java.annotation.aop
AOP specific annotations.
org.springframework.config.java.annotation.aop.targetsource - package org.springframework.config.java.annotation.aop.targetsource
TargetSource specific annotations.
org.springframework.config.java.context - package org.springframework.config.java.context
ApplicationContext implementations that support Java configuration classes as input
org.springframework.config.java.core - package org.springframework.config.java.core
For internal use only: subject to backward-incompatible changes.
org.springframework.config.java.enhancement - package org.springframework.config.java.enhancement
For internal use only: subject to backward-incompatible changes.
org.springframework.config.java.enhancement.cglib - package org.springframework.config.java.enhancement.cglib
For internal use only: subject to backward-incompatible changes.
org.springframework.config.java.naming - package org.springframework.config.java.naming
Pluggable strategies for bean naming.
org.springframework.config.java.process - package org.springframework.config.java.process
Core functionality for processing Configuration classes.
org.springframework.config.java.support - package org.springframework.config.java.support
Java configuration support package.
org.springframework.config.java.util - package org.springframework.config.java.util
Utility package.
org.springframework.config.java.valuesource - package org.springframework.config.java.valuesource
Mechanisms for resolving externalized values within Java configurations.

P

pop() - Method in class org.springframework.config.java.core.BeanNameTrackingDefaultListableBeanFactory
 
postProcessBeanFactory(ConfigurableListableBeanFactory) - Method in class org.springframework.config.java.process.ConfigurationPostProcessor
Generate BeanDefinitions and add them to factory for each Configuration bean.
prepareRefresh() - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
prepareRefresh() - Method in class org.springframework.config.java.context.JavaConfigWebApplicationContext
 
Primary - Enum in org.springframework.config.java.annotation
Signifies Beans as primary for disambiguation when looking up beans by type.
processBeanMethodReturnValue(BeanFactory, Object, Method, ProxyFactory) - Method in interface org.springframework.config.java.core.BeanMethodReturnValueProcessor
 
processClass(Class<?>) - Method in class org.springframework.config.java.process.ConfigurationProcessor
Generate bean definitions from a 'naked' configuration class.
processMethod(Method) - Method in class org.springframework.config.java.core.AutoBeanMethodProcessor
 
processMethod(Method) - Method in interface org.springframework.config.java.core.BeanMethodProcessor
 
processMethod(Method) - Method in class org.springframework.config.java.core.ExternalBeanMethodProcessor
 
processMethod(Method) - Method in class org.springframework.config.java.core.ExternalValueMethodProcessor
 
processMethod(Method) - Method in class org.springframework.config.java.core.ScopedProxyMethodProcessor
 
processMethod(Method) - Method in class org.springframework.config.java.core.StandardBeanMethodProcessor
 
PropertiesValueSource - Class in org.springframework.config.java.valuesource
 
PropertiesValueSource(Properties) - Constructor for class org.springframework.config.java.valuesource.PropertiesValueSource
 
PROTOTYPE - Static variable in class org.springframework.config.java.util.DefaultScopes
 

R

recordRequestForBeanName(String) - Method in class org.springframework.config.java.core.BeanNameTrackingDefaultListableBeanFactory
 
registerBeanDefinition(String, BeanDefinition, boolean) - Method in class org.springframework.config.java.process.ConfigurationProcessor
 
registerDefaultPostProcessors() - Method in class org.springframework.config.java.context.AnnotationApplicationContext
Deprecated. Register the default post processors used for parsing Spring classes.
registerDefaultPostProcessors() - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
Register the default post processors used for parsing Spring classes.
registerDefaultPostProcessors() - Method in class org.springframework.config.java.context.JavaConfigWebApplicationContext
Register the default post processors used for parsing Spring classes.
registerSingleton(String, Object, boolean) - Method in class org.springframework.config.java.process.ConfigurationProcessor
 
REQUEST - Static variable in class org.springframework.config.java.util.DefaultScopes
 
resolve(String, Class<?>) - Method in class org.springframework.config.java.valuesource.AbstractStringBasedValueSource
 
resolve(String, Class<?>) - Method in class org.springframework.config.java.valuesource.CompositeValueSource
 
resolve(String, Class<?>) - Method in interface org.springframework.config.java.valuesource.ValueSource
 
resolveHiddenScopedProxyBeanName(String) - Static method in class org.springframework.config.java.core.ScopedProxyMethodProcessor
Return the hidden name based on a scoped proxy bean name.
ResourceBundles - Annotation Type in org.springframework.config.java.annotation
Annotation used to identify resource paths to use to resolve properties.

S

ScopedProxy - Annotation Type in org.springframework.config.java.annotation.aop
Marker annotation identical in functionality with <aop:scoped-proxy/> tag.
ScopedProxyMethodProcessor - Class in org.springframework.config.java.core
 
ScopedProxyMethodProcessor(StandardBeanMethodProcessor) - Constructor for class org.springframework.config.java.core.ScopedProxyMethodProcessor
 
SESSION - Static variable in class org.springframework.config.java.util.DefaultScopes
 
setApplicationContext(ApplicationContext) - Method in class org.springframework.config.java.process.ConfigurationPostProcessor
 
setApplicationContext(ApplicationContext) - Method in class org.springframework.config.java.support.ConfigurationSupport
 
setBasePackages(String...) - Method in class org.springframework.config.java.context.AnnotationApplicationContext
Deprecated. Set the base packages for configurations from Strings.
setBasePackages(String...) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
The base packages for configurations from Strings.
setBeanFactory(BeanFactory) - Method in class org.springframework.config.java.support.ConfigurationSupport
 
setBeanNamingStrategy(BeanNamingStrategy) - Method in class org.springframework.config.java.process.ConfigurationProcessor
Optionally indicate the naming strategy used for creating the bean names during processing.
setConfigClasses(Class<?>...) - Method in class org.springframework.config.java.context.AnnotationApplicationContext
Deprecated. Indicate the Classes that hold annotations suitable for configuring the current application context.
setConfigClasses(Class<?>...) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
setConfigurationListenerRegistry(ConfigurationListenerRegistry) - Method in class org.springframework.config.java.process.ConfigurationPostProcessor
The listener registry used by this factory bean.
setConfigurationListenerRegistry(ConfigurationListenerRegistry) - Method in class org.springframework.config.java.process.ConfigurationProcessor
Optionally specify a custom subclass of ConfigurationListenerRegistry.
setNamingStrategy(BeanNamingStrategy) - Method in class org.springframework.config.java.process.ConfigurationPostProcessor
BeanNamingStrategy used for generating the bean definitions.
setParent(ApplicationContext) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
setPrefix(MethodNameStrategy.Prefix) - Method in class org.springframework.config.java.naming.MethodNameStrategy
 
setResourceLoader(ResourceLoader) - Method in class org.springframework.config.java.process.ConfigurationPostProcessor
Optional implementation of ResourceLoaderAware
setResourceLoader(ResourceLoader) - Method in class org.springframework.config.java.process.ConfigurationProcessor
Optionally indicate the resourceLoader.
SINGLETON - Static variable in class org.springframework.config.java.util.DefaultScopes
 
StandardBeanMethodProcessor - Class in org.springframework.config.java.core
 
StandardBeanMethodProcessor(ConfigurableListableBeanFactory, BeanNameTrackingDefaultListableBeanFactory, BeanNamingStrategy, MethodBeanWrapper) - Constructor for class org.springframework.config.java.core.StandardBeanMethodProcessor
 

T

TypeSafeBeanFactoryUtils - Class in org.springframework.config.java.context
For internal use only: subject to backward-incompatible changes.
TypeSafeBeanFactoryUtils() - Constructor for class org.springframework.config.java.context.TypeSafeBeanFactoryUtils
 

V

validateSuitabilityForEnhancement(Class<?>) - Static method in class org.springframework.config.java.enhancement.cglib.CglibConfigurationEnhancer
Ensures class is suitable for later enhancement, throws an exception otherwise.
value() - Method in enum org.springframework.config.java.annotation.DependencyCheck
 
value() - Method in enum org.springframework.config.java.annotation.Lazy
 
value() - Method in enum org.springframework.config.java.annotation.Primary
 
value() - Method in enum org.springframework.config.java.naming.MethodNameStrategy.Prefix
 
valueOf(String) - Static method in enum org.springframework.config.java.annotation.DependencyCheck
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.springframework.config.java.annotation.Lazy
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.springframework.config.java.annotation.Primary
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.springframework.config.java.naming.MethodNameStrategy.Prefix
Returns the enum constant of this type with the specified name.
ValueResolutionException - Exception in org.springframework.config.java.valuesource
 
ValueResolutionException(String, String) - Constructor for exception org.springframework.config.java.valuesource.ValueResolutionException
 
ValueResolutionException(String, Throwable) - Constructor for exception org.springframework.config.java.valuesource.ValueResolutionException
 
values() - Static method in enum org.springframework.config.java.annotation.DependencyCheck
Returns an array containing the constants of this enum type, in the order they're declared.
values() - Static method in enum org.springframework.config.java.annotation.Lazy
Returns an array containing the constants of this enum type, in the order they're declared.
values() - Static method in enum org.springframework.config.java.annotation.Primary
Returns an array containing the constants of this enum type, in the order they're declared.
values() - Static method in enum org.springframework.config.java.naming.MethodNameStrategy.Prefix
Returns an array containing the constants of this enum type, in the order they're declared.
ValueSource - Interface in org.springframework.config.java.valuesource
Source of strongly typed externalized values

W

wrapResult(String, EnhancerMethodInvoker) - Method in class org.springframework.config.java.core.MethodBeanWrapper
Wrap the result of a bean definition method in a Spring AOP proxy if there are advisors in the current factory that would apply to it.

A B C D E F G H I J L M N O P R S T V W

Copyright � 2005-2008 Spring Framework. All Rights Reserved.