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

A

AbstractDeclaration - Class in org.springframework.config.java.plugin
TODO: JAVADOC
AbstractDeclaration() - Constructor for class org.springframework.config.java.plugin.AbstractDeclaration
 
AbstractStringBasedValueResolver - Class in org.springframework.config.java.valuesource
Base class for use by all ValueResolver implementations that will return String.
AbstractStringBasedValueResolver() - Constructor for class org.springframework.config.java.valuesource.AbstractStringBasedValueResolver
 
add(ValueResolver) - Method in class org.springframework.config.java.valuesource.CompositeValueResolver
 
addAnnotation(Annotation) - Method in class org.springframework.config.java.model.ModelMethod
 
addBasePackage(String) - Method in interface org.springframework.config.java.context.ConfigurableJavaConfigApplicationContext
Allows for incrementally building up the base packages to be scanned by this context.
addBasePackage(String) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
addBasePackage(String) - Method in class org.springframework.config.java.context.JavaConfigWebApplicationContext
 
addConfigClass(Class<?>) - Method in interface org.springframework.config.java.context.ConfigurableJavaConfigApplicationContext
Allows for incrementally building up the configuration classes to be processed by this context.
addConfigClass(Class<?>) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
addConfigClass(Class<?>) - Method in class org.springframework.config.java.context.JavaConfigWebApplicationContext
 
AnnotationDrivenConfig - Annotation Type in org.springframework.config.java.plugin.context
Activates various annotations to be detected in bean classes: Spring's @Autowired, as well as JSR 250's @PostConstruct, @PreDestroy and @Resource (if available), JAX-WS's @WebServiceRef (if available), EJB3's @EJB (if available), and JPA's @PersistenceContext and @PersistenceUnit (if available).
AnnotationDrivenTx - Annotation Type in org.springframework.config.java.plugin.tx
Indicates that transaction configuration is defined by Spring's @Transactional annotation on bean classes, and that proxies are automatically to be created for the relevant annotated beans.
AopMode - Enum in org.springframework.config.java.plugin.tx
TODO: JAVADOC
AspectJAutoProxy - Annotation Type in org.springframework.config.java.plugin.aop
TODO: JAVADOC
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.
AutowireMode - Enum in org.springframework.config.java.annotation
Enumeration determining autowiring mode: that is, how JavaConfig should inject dependencies, via constructor, via setter, and whether by name or by type.

B

Bean - Annotation Type in org.springframework.config.java.annotation
Annotation to be applied to methods that create beans in a Spring context.
BeanMetadata - Class in org.springframework.config.java.util
Commonly-used bean metadata pairs.
BeanMetadata() - Constructor for class org.springframework.config.java.util.BeanMetadata
 
BeanNamingStrategy - Interface in org.springframework.config.java.naming
Strategy interface for constructing a bean name from a java method.
booleanValue() - Method in enum org.springframework.config.java.annotation.Lazy
 
booleanValue() - Method in enum org.springframework.config.java.annotation.Primary
 

C

ChainedStrategy - Class in org.springframework.config.java.naming
Chain-like implementation naming strategy.
ChainedStrategy(BeanNamingStrategy[]) - Constructor for class org.springframework.config.java.naming.ChainedStrategy
 
clear() - Method in class org.springframework.config.java.aspect.RequiredMethodInvocationRegistry
Remove all method invocation records from the registry.
ComponentScan - Annotation Type in org.springframework.config.java.plugin.context
Scans the classpath for annotated components that will be auto-registered as Spring beans.
ComponentScanDeclaration - Class in org.springframework.config.java.plugin.context
TODO: JAVADOC
ComponentScanDeclaration() - Constructor for class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
CompositeValueResolver - Class in org.springframework.config.java.valuesource
Aggregates one or more ValueResolver instances, delegating calls to CompositeValueResolver.resolve(String, Class).
CompositeValueResolver(Map<String, ValueResolver>) - Constructor for class org.springframework.config.java.valuesource.CompositeValueResolver
Creates a new CompositeValueResolver instance based on a map of ValueResolver instances.
ConfigurableJavaConfigApplicationContext - Interface in org.springframework.config.java.context
 
Configuration - Annotation Type in org.springframework.config.java.annotation
Annotation indicating that a class is a "Java Configuration" class, meaning that it exposes one or more Bean methods.
ConfigurationPlugin<A extends java.lang.annotation.Annotation> - Interface in org.springframework.config.java.plugin
TODO: JAVADOC
ConfigurationPostProcessor - Class in org.springframework.config.java.process
TODO: JAVADOC
ConfigurationPostProcessor() - Constructor for class org.springframework.config.java.process.ConfigurationPostProcessor
 
ConfigurationSupport - Class in org.springframework.config.java.support
Convenient base class for Configurations, allowing easy lookup of beans in the owning factory as well as other services.
ConfigurationSupport() - Constructor for class org.springframework.config.java.support.ConfigurationSupport
 
COPY_HIDDEN - Static variable in class org.springframework.config.java.util.BeanMetadata
Signifies that an otherwise public (visible) bean should be copied to the JavaConfig-internal BeanFactory.
createBeanFactory(String) - Method in class org.springframework.config.java.context.DefaultBeanFactoryProvider
 

D

DEFAULT_TRANSACTION_MANAGER_BEAN_NAME - Static variable in class org.springframework.config.java.plugin.tx.GeneralizedAnnotationDrivenBeanDefinitionParser
 
DefaultBeanFactoryProvider - Class in org.springframework.config.java.context
TODO: JAVADOC
DefaultBeanFactoryProvider() - Constructor for class org.springframework.config.java.context.DefaultBeanFactoryProvider
 
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

EnvironmentValueResolver - Class in org.springframework.config.java.valuesource
TODO: JAVADOC
EnvironmentValueResolver() - Constructor for class org.springframework.config.java.valuesource.EnvironmentValueResolver
 
EnvironmentValueSource - Annotation Type in org.springframework.config.java.annotation.valuesource
Enables resolving ExternalValue fields/methods against environment variables.
equals(Object) - Method in class org.springframework.config.java.model.ModelClass
 
equals(Object) - Method in class org.springframework.config.java.model.ModelMethod
 
EXCEPTION_MSG_PREFIX - Static variable in class org.springframework.config.java.valuesource.EnvironmentValueResolver
 
ExternalBean - Annotation Type in org.springframework.config.java.annotation
Annotation used to indicate an external bean, that must be supplied by the environment.
ExternalValue - Annotation Type in org.springframework.config.java.annotation
Annotation used to assign externally-supplied values to fields and/or methods.

F

FactoryBeanObjectCreationException - Exception in org.springframework.config.java.support
Unchecked exception thrown by ConfigurationSupport.getObject(FactoryBean) in the event that the underlying FactoryBean.getObject() method throws an exception.
FactoryBeanObjectCreationException(FactoryBean, Exception) - Constructor for exception org.springframework.config.java.support.FactoryBeanObjectCreationException
Create a new FactoryBeanObjectCreationException with the specified root cause.
FactoryBeanObjectCreationException(String) - Constructor for exception org.springframework.config.java.support.FactoryBeanObjectCreationException
Create a new FactoryBeanObjectCreationException with the specified message explaining the failure.
finishRefresh() - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
forClass(Class<?>) - Static method in class org.springframework.config.java.model.ModelClass
Creates a new ModelClass for a given Class.
forMember(DefaultListableBeanFactory, Field) - Static method in class org.springframework.config.java.valuesource.CompositeValueResolver
Aggregates any ValueResolver beans from beanFactory into a new CompositeValueResolver instance.
forMember(DefaultListableBeanFactory, Method) - Static method in class org.springframework.config.java.valuesource.CompositeValueResolver
Aggregates any ValueResolver beans from beanFactory into a new CompositeValueResolver instance.
forMethod(Method) - Static method in class org.springframework.config.java.model.ModelMethod
Create a ModelMethod representation of a.Method

G

GeneralizedAnnotationDrivenBeanDefinitionParser - Class in org.springframework.config.java.plugin.tx
TODO: JAVADOC
GeneralizedAnnotationDrivenBeanDefinitionParser() - Constructor for class org.springframework.config.java.plugin.tx.GeneralizedAnnotationDrivenBeanDefinitionParser
 
getAnnotations() - Method in class org.springframework.config.java.model.ModelMethod
 
getApplicationContext() - Method in class org.springframework.config.java.support.ConfigurationSupport
 
getBasePackages() - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
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(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(ModelMethod) - Method in interface org.springframework.config.java.naming.BeanNamingStrategy
Create the bean name based on the given method.
getBeanName(ModelMethod) - Method in class org.springframework.config.java.naming.ChainedStrategy
 
getBeanName(ModelMethod) - Method in class org.springframework.config.java.naming.MethodNameStrategy
 
getBeanNamingStrategy() - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
getConfigured(T) - Method in class org.springframework.config.java.support.ConfigurationSupport
Invoke callbacks on the object, as though it were configured in the factory.
getDeclaringClass() - Method in class org.springframework.config.java.model.ModelMethod
 
getInvocationRegistry() - Static method in class org.springframework.config.java.aspect.RequiredMethodInvocationTracker
 
getLineNumber() - Method in class org.springframework.config.java.model.ModelMethod
 
getModifiers() - Method in class org.springframework.config.java.model.ModelMethod
 
getName() - Method in class org.springframework.config.java.model.ModelClass
Returns the fully-qualified name of this class.
getName() - Method in class org.springframework.config.java.model.ModelMethod
 
getNameGenerator() - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
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.
getObject(FactoryBean, Class<T>) - Method in class org.springframework.config.java.support.ConfigurationSupport
Same as ConfigurationSupport.getObject(FactoryBean), but checks FactoryBean.getObjectType() against user-supplied requiredType and then casts internally to return a strongly-typed result.
getOrder() - Method in class org.springframework.config.java.process.ConfigurationPostProcessor
 
getPolicyCode() - Method in enum org.springframework.config.java.plugin.context.RegistrationPolicy
Returns integer associated with constants in MBeanRegistrationSupport
getProxyTargetClass() - Method in interface org.springframework.config.java.plugin.ProxyTargetClassDeclaration
 
getResourcePattern() - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
getScopedProxy() - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
getScopeResolver() - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
getSimpleName() - Method in class org.springframework.config.java.model.ModelClass
Returns the non-qualified name of this class.
getSource() - Method in class org.springframework.config.java.model.ModelClass
Returns a resource path-formatted representation of the .java file that declares this class
getSource() - Method in class org.springframework.config.java.plugin.AbstractDeclaration
 
getString(String) - Method in class org.springframework.config.java.valuesource.AbstractStringBasedValueResolver
Return value associated with name.
getString(String) - Method in class org.springframework.config.java.valuesource.EnvironmentValueResolver
 
getString(String) - Method in class org.springframework.config.java.valuesource.MessageSourceValueSource
 
getString(String) - Method in class org.springframework.config.java.valuesource.PropertiesValueResolver
Resolves name against the supplied Properties object.
getString(String) - Method in class org.springframework.config.java.valuesource.SystemPropertiesValueResolver
 
getValueName() - Method in exception org.springframework.config.java.valuesource.ValueResolutionException
 

H

handle(A, BeanDefinitionRegistry) - Method in interface org.springframework.config.java.plugin.ConfigurationPlugin
 
hashCode() - Method in class org.springframework.config.java.model.ModelClass
 
hashCode() - Method in class org.springframework.config.java.model.ModelMethod
 

I

Import - Annotation Type in org.springframework.config.java.annotation
Annotation for importing other Configuration classes.
ImportXml - Annotation Type in org.springframework.config.java.annotation
TODO: JAVADOC
initConfigLocations() - Method in class org.springframework.config.java.context.JavaConfigWebApplicationContext
 
initialValue() - Method in class org.springframework.config.java.aspect.RequiredMethodInvocationRegistry
 
interrogateRequiredMethods(Object, String) - Method in class org.springframework.config.java.aspect.RequiredMethodInvocationRegistry
Interrogate any @Required methods within bean and determine whether they have been invoked.
invokeBeanFactoryPostProcessors(ConfigurableListableBeanFactory) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
invokeBeanFactoryPostProcessors(ConfigurableListableBeanFactory) - Method in class org.springframework.config.java.context.JavaConfigWebApplicationContext
 
isAnnotationConfig() - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
isInterface() - Method in class org.springframework.config.java.model.ModelClass
Returns whether the class represented by this ModelClass instance is an interface.
issues - package issues
 
isUseDefaultFilters() - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 

J

JavaConfigApplicationContext - Class in org.springframework.config.java.context
Implementation of ApplicationContext that accepts @Configuration class literals and/or base package paths containing @Configuration classes.
JavaConfigApplicationContext() - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
TODO: JAVADOC
JavaConfigApplicationContext(Class<?>...) - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
 
JavaConfigApplicationContext(String...) - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
 
JavaConfigApplicationContext(JavaConfigApplicationContext) - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
Create a new context with parent as the parent.
JavaConfigApplicationContext(Class<?>[], String[]) - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
 
JavaConfigApplicationContext(ApplicationContext, Class<?>...) - Constructor for class org.springframework.config.java.context.JavaConfigApplicationContext
 
JavaConfigContextLoader - Class in org.springframework.config.java.test
Implementation of the ContextLoader strategy for creating a JavaConfigApplicationContext for a test's @ContextConfiguration

Example usage:

 @RunWith(SpringJUnit4ClassRunner.class)
 @ContextConfiguration(locations = {"com.myco.TestDatabaseConfiguration", "com.myco.config"},
                       loader = JavaConfigContextLoader.class)
 public MyTests { ...
JavaConfigContextLoader() - Constructor for class org.springframework.config.java.test.JavaConfigContextLoader
 
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

Lazy - Enum in org.springframework.config.java.annotation
Lazy instantiation options.
loadBeanDefinitions(DefaultListableBeanFactory) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
Loads any specified @Configuration classes as bean definitions within this context's BeanFactory for later processing by.ConfigurationPostProcessor
loadBeanDefinitions(DefaultListableBeanFactory) - Method in class org.springframework.config.java.context.JavaConfigWebApplicationContext
Loads any specified @Configuration classes as bean definitions within this context's BeanFactory for later processing by ConfigurationPostProcessor
loadContext(String...) - Method in class org.springframework.config.java.test.JavaConfigContextLoader
Loads a new context based on the supplied locations, configures the context, and finally returns the context in fully refreshed state.
logger - Variable in class org.springframework.config.java.test.JavaConfigContextLoader
 
logRequiredMethodInvocation(JoinPoint) - Method in class org.springframework.config.java.aspect.RequiredMethodInvocationTracker
 

M

MBeanExport - Annotation Type in org.springframework.config.java.plugin.context
Activates default exporting of MBeans by detecting standard MBeans in the Spring context as well as @ManagedResource annotations on Spring-defined beans.
MessageSourceValueSource - Class in org.springframework.config.java.valuesource
TODO: JAVADOC - ELIMINATE? ValueResolver implementation backed by a Spring MessageSource.
MessageSourceValueSource(MessageSource) - Constructor for class org.springframework.config.java.valuesource.MessageSourceValueSource
Creates a new MessageSourceValueSource object.
Meta - Annotation Type in org.springframework.config.java.annotation
Bean metadata annotation.
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.
ModelClass - Class in org.springframework.config.java.model
Abstract representation of a class, free from java reflection.
ModelClass() - Constructor for class org.springframework.config.java.model.ModelClass
Creates a new and empty ModelClass instance.
ModelClass(String) - Constructor for class org.springframework.config.java.model.ModelClass
Creates a new ModelClass instance
ModelClass(String, boolean) - Constructor for class org.springframework.config.java.model.ModelClass
Creates a new ModelClass instance
ModelMethod - Class in org.springframework.config.java.model
TODO: JAVADOC
ModelMethod(String, int, Annotation[]) - Constructor for class org.springframework.config.java.model.ModelMethod
 

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.valuesource - package org.springframework.config.java.annotation.valuesource
 
org.springframework.config.java.aspect - package org.springframework.config.java.aspect
 
org.springframework.config.java.context - package org.springframework.config.java.context
ApplicationContext implementations that support Java configuration classes as input.
org.springframework.config.java.model - package org.springframework.config.java.model
A minimalist, non-reflection based representation of Java language elements.
Should not be considered a complete alternative to java.lang.reflect, but rather just enough functionality to enable JavaConfig to function without resorting to reflection.
org.springframework.config.java.naming - package org.springframework.config.java.naming
Pluggable strategies for bean naming.
Provides the means for doing the method -> bean name translation.
org.springframework.config.java.plugin - package org.springframework.config.java.plugin
 
org.springframework.config.java.plugin.aop - package org.springframework.config.java.plugin.aop
 
org.springframework.config.java.plugin.context - package org.springframework.config.java.plugin.context
 
org.springframework.config.java.plugin.tx - package org.springframework.config.java.plugin.tx
 
org.springframework.config.java.process - package org.springframework.config.java.process
TODO: JAVADOC Core functionality for processing Configuration classes.
org.springframework.config.java.support - package org.springframework.config.java.support
TODO: JAVADOC Java configuration support package.
Classes provided the core functionality for annotation based configuration.
org.springframework.config.java.test - package org.springframework.config.java.test
 
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 from within Java configurations.

P

parseDeclaration(TxAnnotationDrivenDeclaration, BeanDefinitionRegistry) - Method in class org.springframework.config.java.plugin.tx.GeneralizedAnnotationDrivenBeanDefinitionParser
 
Plugin - Annotation Type in org.springframework.config.java.plugin
TODO: JAVADOC
postProcessBeanFactory(ConfigurableListableBeanFactory) - Method in class org.springframework.config.java.process.ConfigurationPostProcessor
 
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.
processLocations(Class<?>, String...) - Method in class org.springframework.config.java.test.JavaConfigContextLoader
Simply returns the supplied locations unchanged.
PropertiesValueResolver - Class in org.springframework.config.java.valuesource
Resolves values from a Properties object.
PropertiesValueResolver(Properties) - Constructor for class org.springframework.config.java.valuesource.PropertiesValueResolver
Creates a new PropertiesValueResolver object.
PropertiesValueSource - Annotation Type in org.springframework.config.java.annotation.valuesource
Enables resolving ExternalValue fields/methods against one or more properties files.
PROTOTYPE - Static variable in class org.springframework.config.java.util.DefaultScopes
 
ProxyTargetClass - Enum in org.springframework.config.java.plugin
TODO: JAVADOC
ProxyTargetClassDeclaration - Interface in org.springframework.config.java.plugin
TODO: JAVADOC

R

registerBeanDefinition(BeanDefinitionRegistry) - Method in class org.springframework.config.java.context.DefaultBeanFactoryProvider
 
registerMethodInvocation(Object, String, String) - Method in class org.springframework.config.java.aspect.RequiredMethodInvocationRegistry
Record the invocation of a @Required method for later interrogation.
RegistrationPolicy - Enum in org.springframework.config.java.plugin.context
Indicates registration behavior when attempting to register an MBean that already exists.
REQUEST - Static variable in class org.springframework.config.java.util.DefaultScopes
 
RequiredMethodInvocationRegistry - Class in org.springframework.config.java.aspect
Thread-local storage for recording which beans' required methods have been invoked.
RequiredMethodInvocationRegistry() - Constructor for class org.springframework.config.java.aspect.RequiredMethodInvocationRegistry
 
RequiredMethodInvocationTracker - Class in org.springframework.config.java.aspect
Aspect that weaves tracking logic into methods annotated with Spring's @Required annotation.
RequiredMethodInvocationTracker() - Constructor for class org.springframework.config.java.aspect.RequiredMethodInvocationTracker
 
resolve(String, Class<?>) - Method in class org.springframework.config.java.valuesource.AbstractStringBasedValueResolver
Return value associated with name, where value is of type requiredType.
resolve(String, Class<?>) - Method in class org.springframework.config.java.valuesource.CompositeValueResolver
 
resolve(String, Class<?>) - Method in interface org.springframework.config.java.valuesource.ValueResolver
Resolves name against underlying value source, returning type specified by requiredType.

S

ScopedProxy - Annotation Type in org.springframework.config.java.annotation.aop
Marker annotation identical in functionality with <aop:scoped-proxy/> tag.
SESSION - Static variable in class org.springframework.config.java.util.DefaultScopes
 
setAnnotationConfig(boolean) - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
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.plugin.context.ComponentScanDeclaration
 
setBeanFactory(BeanFactory) - Method in class org.springframework.config.java.support.ConfigurationSupport
 
setBeanNamingStrategy(BeanNamingStrategy) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
setBeanNamingStrategy(BeanNamingStrategy) - Method in class org.springframework.config.java.process.ConfigurationPostProcessor
 
setDeclaringClass(ModelClass) - Method in class org.springframework.config.java.model.ModelMethod
 
setInterface(boolean) - Method in class org.springframework.config.java.model.ModelClass
Signifies that this class is (true) or is not (false) an interface.
setLineNumber(int) - Method in class org.springframework.config.java.model.ModelMethod
 
setName(String) - Method in class org.springframework.config.java.model.ModelClass
Sets the fully-qualified name of this class.
setNameGenerator(Class<?>) - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
setNamingStrategy(BeanNamingStrategy) - Method in class org.springframework.config.java.process.ConfigurationPostProcessor
Deprecated. Use ConfigurationPostProcessor.setBeanNamingStrategy(BeanNamingStrategy) instead
setParent(ApplicationContext) - Method in class org.springframework.config.java.context.JavaConfigApplicationContext
 
setPrefix(MethodNameStrategy.Prefix) - Method in class org.springframework.config.java.naming.MethodNameStrategy
 
setResourcePattern(String) - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
setScopedProxy(ScopedProxyMode) - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
setScopeResolver(Class<?>) - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
setSource(Object) - Method in class org.springframework.config.java.model.ModelClass
Set the source location for this class.
setSource(Object) - Method in class org.springframework.config.java.plugin.AbstractDeclaration
 
setUseDefaultFilters(boolean) - Method in class org.springframework.config.java.plugin.context.ComponentScanDeclaration
 
SINGLETON - Static variable in class org.springframework.config.java.util.DefaultScopes
 
SystemPropertiesValueResolver - Class in org.springframework.config.java.valuesource
 
SystemPropertiesValueResolver() - Constructor for class org.springframework.config.java.valuesource.SystemPropertiesValueResolver
 
SystemPropertiesValueSource - Annotation Type in org.springframework.config.java.annotation.valuesource
Enables resolving ExternalValue fields/methods against system properties.

T

toString() - Method in class org.springframework.config.java.aspect.RequiredMethodInvocationRegistry
 
toString() - Method in class org.springframework.config.java.model.ModelClass
Given a ModelClass instance representing a class com.acme.Foo, this method will return
toString() - Method in class org.springframework.config.java.model.ModelMethod
 
TRANSACTION_ADVISOR_BEAN_NAME - Static variable in class org.springframework.config.java.plugin.tx.GeneralizedAnnotationDrivenBeanDefinitionParser
The bean name of the internally managed transaction advisor (mode="proxy").
TRANSACTION_ASPECT_BEAN_NAME - Static variable in class org.springframework.config.java.plugin.tx.GeneralizedAnnotationDrivenBeanDefinitionParser
The bean name of the internally managed transaction aspect (mode="aspectj").

V

value() - Method in enum org.springframework.config.java.annotation.AutowireMode
Integer value associated with this enum label.
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.AutowireMode
Returns the enum constant of this type with the specified name.
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.
valueOf(String) - Static method in enum org.springframework.config.java.plugin.context.RegistrationPolicy
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.springframework.config.java.plugin.ProxyTargetClass
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.springframework.config.java.plugin.tx.AopMode
Returns the enum constant of this type with the specified name.
ValueResolutionException - Exception in org.springframework.config.java.valuesource
TODO: JAVADOC
ValueResolutionException(String, String) - Constructor for exception org.springframework.config.java.valuesource.ValueResolutionException
Creates a new ValueResolutionException object.
ValueResolutionException(String, Throwable) - Constructor for exception org.springframework.config.java.valuesource.ValueResolutionException
 
ValueResolver - Interface in org.springframework.config.java.valuesource
Resolver of strongly typed externalized values.
values() - Static method in enum org.springframework.config.java.annotation.AutowireMode
Returns an array containing the constants of this enum type, in the order they are declared.
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 are 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 are 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 are 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 are declared.
values() - Static method in enum org.springframework.config.java.plugin.context.RegistrationPolicy
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.springframework.config.java.plugin.ProxyTargetClass
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.springframework.config.java.plugin.tx.AopMode
Returns an array containing the constants of this enum type, in the order they are declared.

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