A B C D E F G H I J N O P R S T U V X

A

addArea(String) - Method in class org.springframework.extensions.config.ConfigLookupContext
 
addAttribute(String, String) - Method in class org.springframework.extensions.config.element.GenericConfigElement
Adds the attribute with the given name and value
addChild(ConfigElement) - Method in class org.springframework.extensions.config.element.GenericConfigElement
Adds the given config element as a child of this element
addConfigElement(ConfigElement) - Method in class org.springframework.extensions.config.ConfigSectionImpl
Adds a config element to the results for the lookup
addConfigSection(ConfigSection, String) - Method in class org.springframework.extensions.config.BaseConfigService
Adds the given config section to the config service and optionally within a named area
addDeployer(ConfigDeployer) - Method in class org.springframework.extensions.config.BaseConfigService
Register deployer
addDeployer(ConfigDeployer) - Method in interface org.springframework.extensions.config.ConfigService
 
addEvaluator(String, Evaluator) - Method in class org.springframework.extensions.config.BaseConfigService
Adds the evaluator to the config service
addSourceString(String) - Method in class org.springframework.extensions.config.source.BaseConfigSource
Conditionally adds the source to the set of source strings if its trimmed length is greater than 0.
appendConfig(ConfigSource) - Method in class org.springframework.extensions.config.BaseConfigService
 
appendConfig(ConfigSource) - Method in interface org.springframework.extensions.config.ConfigService
 
applies(Object, String) - Method in interface org.springframework.extensions.config.evaluator.Evaluator
Determines whether the given condition evaluates to true for the given object
applies(Object, String) - Method in class org.springframework.extensions.config.evaluator.ObjectTypeEvaluator
Tests whether the given object is equal to the class name given in the condition
applies(Object, String) - Method in class org.springframework.extensions.config.evaluator.StringEvaluator
Tests whether the given object is equal to the string given in the condition
ATTR_CLASS - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
ATTR_CONDITION - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
ATTR_ELEMENT_NAME - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
ATTR_EVALUATOR - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
ATTR_ID - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
ATTR_NAME - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
ATTR_REPLACE - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
ATTR_VALUE - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
attributes - Variable in class org.springframework.extensions.config.element.ConfigElementAdapter
 

B

BaseConfigService - Class in org.springframework.extensions.config
Base class for all config service implementations.
BaseConfigService(ConfigSource) - Constructor for class org.springframework.extensions.config.BaseConfigService
Construct the service with the source from which it must read
BaseConfigSource - Class in org.springframework.extensions.config.source
Base class for ConfigSource implementations, provides support for parsing comma separated sources and iterating around them
BaseConfigSource() - Constructor for class org.springframework.extensions.config.source.BaseConfigSource
Default constructor.
BaseConfigSource(List<String>) - Constructor for class org.springframework.extensions.config.source.BaseConfigSource
 

C

children - Variable in class org.springframework.extensions.config.element.ConfigElementAdapter
 
ClassPathConfigSource - Class in org.springframework.extensions.config.source
ConfigSource implementation that gets its data via the class path.
ClassPathConfigSource(String) - Constructor for class org.springframework.extensions.config.source.ClassPathConfigSource
Constructs a class path configuration source that uses a single file
ClassPathConfigSource(List<String>) - Constructor for class org.springframework.extensions.config.source.ClassPathConfigSource
Constructs an ClassPathConfigSource using the list of classpath elements
combine(ConfigElement) - Method in interface org.springframework.extensions.config.ConfigElement
Combines the given config element with this config element and returns a new instance containing the resulting combination.
combine(ConfigElement) - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
combine(ConfigElement) - Method in class org.springframework.extensions.config.element.GenericConfigElement
 
Config - Interface in org.springframework.extensions.config
Definition of a object that represents the results of a lookup.
ConfigBootstrap - Class in org.springframework.extensions.config
Spring bean used to deploy additional config files into the injected config service.
ConfigBootstrap() - Constructor for class org.springframework.extensions.config.ConfigBootstrap
 
ConfigDeployer - Interface in org.springframework.extensions.config
Config Deployer interface.
configDeployers - Variable in class org.springframework.extensions.config.BaseConfigService
 
ConfigDeployment - Class in org.springframework.extensions.config
Configuration deployment
ConfigDeployment(String, InputStream) - Constructor for class org.springframework.extensions.config.ConfigDeployment
 
ConfigElement - Interface in org.springframework.extensions.config
Definition of a configuration element
ConfigElementAdapter - Class in org.springframework.extensions.config.element
Adapter class for implementing ConfigElement's.
ConfigElementAdapter(String) - Constructor for class org.springframework.extensions.config.element.ConfigElementAdapter
Default constructor
ConfigElementReader - Interface in org.springframework.extensions.config.xml.elementreader
Definition of an object responsible for converting the XML representation of a config element into an in-memory object representation
ConfigException - Exception in org.springframework.extensions.config
Exception thrown by the config service
ConfigException(String) - Constructor for exception org.springframework.extensions.config.ConfigException
 
ConfigException(String, Throwable) - Constructor for exception org.springframework.extensions.config.ConfigException
 
ConfigImpl - Class in org.springframework.extensions.config
Default implementation of the Config interface, this should be used as the base class for any customisations
ConfigImpl() - Constructor for class org.springframework.extensions.config.ConfigImpl
Default constructor
ConfigImpl(ConfigImpl) - Constructor for class org.springframework.extensions.config.ConfigImpl
Construct a ConfigImpl using the contents of an existing ConfigImpl
ConfigLookupAlgorithm - Interface in org.springframework.extensions.config
Interface definition for a config lookup algorithm, this may be last value wins, a merging strategy or based on inheritance.
ConfigLookupContext - Class in org.springframework.extensions.config
Object to hold the context for a config lookup.
ConfigLookupContext() - Constructor for class org.springframework.extensions.config.ConfigLookupContext
Default constructor
ConfigLookupContext(String) - Constructor for class org.springframework.extensions.config.ConfigLookupContext
Constructs a lookup context for the given area
ConfigLookupContext(List<String>) - Constructor for class org.springframework.extensions.config.ConfigLookupContext
Constructs a lookup context for the list of the given areas
configs - Variable in class org.springframework.extensions.config.ConfigBootstrap
 
ConfigSection - Interface in org.springframework.extensions.config
Definition of a config section.
ConfigSectionImpl - Class in org.springframework.extensions.config
Default implementation of a config section
ConfigSectionImpl(String, String, boolean) - Constructor for class org.springframework.extensions.config.ConfigSectionImpl
 
configService - Variable in class org.springframework.extensions.config.ConfigBootstrap
 
ConfigService - Interface in org.springframework.extensions.config
Definition of a Configuration Service
configSource - Variable in class org.springframework.extensions.config.BaseConfigService
 
ConfigSource - Interface in org.springframework.extensions.config
Definition of a configuration source
createConfigElement(Element) - Method in class org.springframework.extensions.config.xml.elementreader.GenericElementReader
Creates a ConfigElementImpl object from the given element.
createEvaluator(String, String) - Method in class org.springframework.extensions.config.BaseConfigService
Instantiate the evaluator with the given name and class

D

DefaultLookupAlgorithm - Class in org.springframework.extensions.config
The default algorithm used to determine whether a section applies to the object being looked up
DefaultLookupAlgorithm() - Constructor for class org.springframework.extensions.config.DefaultLookupAlgorithm
 
destroy() - Method in class org.springframework.extensions.config.BaseConfigService
Cleans up all the resources used by the config service
destroy() - Method in class org.springframework.extensions.config.xml.XMLConfigService
 

E

ELEMENT_CONFIG - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
ELEMENT_ELEMENT_READER - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
ELEMENT_ELEMENT_READERS - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
ELEMENT_EVALUATOR - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
ELEMENT_EVALUATORS - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
ELEMENT_PLUG_INS - Static variable in interface org.springframework.extensions.config.xml.XMLConfigConstants
 
Evaluator - Interface in org.springframework.extensions.config.evaluator
Definition of an evaluator, an object that decides whether the config section applies to the current object being looked up.

F

FileConfigSource - Class in org.springframework.extensions.config.source
ConfigSource implementation that gets its data via a file or files.
FileConfigSource(String) - Constructor for class org.springframework.extensions.config.source.FileConfigSource
Constructs a file configuration source that uses a single file
FileConfigSource(List<String>) - Constructor for class org.springframework.extensions.config.source.FileConfigSource
 

G

GenericConfigElement - Class in org.springframework.extensions.config.element
Implementation of a generic configuration element.
GenericConfigElement(String) - Constructor for class org.springframework.extensions.config.element.GenericConfigElement
Default constructor
GenericElementReader - Class in org.springframework.extensions.config.xml.elementreader
Implementation of a generic element reader.
GenericElementReader(XMLConfigService.PropertyConfigurer) - Constructor for class org.springframework.extensions.config.xml.elementreader.GenericElementReader
Construct
getAlgorithm() - Method in class org.springframework.extensions.config.ConfigLookupContext
 
getAreas() - Method in class org.springframework.extensions.config.ConfigLookupContext
 
getAttribute(String) - Method in interface org.springframework.extensions.config.ConfigElement
Gets the value of the attrbiute with the given name
getAttribute(String) - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
getAttributeCount() - Method in interface org.springframework.extensions.config.ConfigElement
Returns the number of attributes this config element has
getAttributeCount() - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
getAttributes() - Method in interface org.springframework.extensions.config.ConfigElement
Returns the list of attributes held by this config element
getAttributes() - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
getChild(String) - Method in interface org.springframework.extensions.config.ConfigElement
Returns a child config element of the given name
getChild(String) - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
getChildCount() - Method in interface org.springframework.extensions.config.ConfigElement
Returns the number of children this config element has
getChildCount() - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
getChildren(String) - Method in interface org.springframework.extensions.config.ConfigElement
Returns a list of children held by this ConfigElement with the given name.
getChildren() - Method in interface org.springframework.extensions.config.ConfigElement
Returns a list of children held by this ConfigElement
getChildren() - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
getChildren(String) - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
getChildrenMap() - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
getChildValue(String) - Method in interface org.springframework.extensions.config.ConfigElement
Shortcut method to return a child config element value of the given name.
getChildValue(String) - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
getCondition() - Method in interface org.springframework.extensions.config.ConfigSection
Returns the condition to use to determine whether the config section this object represents is applicable.
getCondition() - Method in class org.springframework.extensions.config.ConfigSectionImpl
 
getConfig(Object) - Method in class org.springframework.extensions.config.BaseConfigService
 
getConfig(Object, ConfigLookupContext) - Method in class org.springframework.extensions.config.BaseConfigService
 
getConfig(Object) - Method in interface org.springframework.extensions.config.ConfigService
Retrieves the configuration for the given object
getConfig(Object, ConfigLookupContext) - Method in interface org.springframework.extensions.config.ConfigService
Retrieves the configuration for the given object using the given context
getConfigDeployments() - Method in interface org.springframework.extensions.config.ConfigSource
 
getConfigDeployments() - Method in class org.springframework.extensions.config.source.BaseConfigSource
Converts all the sources given in the constructor into a list of input streams.
getConfigElement(String) - Method in interface org.springframework.extensions.config.Config
Returns the config element with the given name, if there is more than one with the given name the first one added is returned.
getConfigElement(String) - Method in class org.springframework.extensions.config.ConfigImpl
 
getConfigElements() - Method in interface org.springframework.extensions.config.Config
Returns all the config elements
getConfigElements() - Method in class org.springframework.extensions.config.ConfigImpl
 
getConfigElements() - Method in interface org.springframework.extensions.config.ConfigSection
Returns the config elements that make up this config section
getConfigElements() - Method in class org.springframework.extensions.config.ConfigSectionImpl
 
getConfigElementValue(String) - Method in interface org.springframework.extensions.config.Config
Shortcut method to get the config element with the given name and return its value.
getConfigElementValue(String) - Method in class org.springframework.extensions.config.ConfigImpl
 
getDeploymentStatus() - Method in class org.springframework.extensions.config.ConfigDeployment
 
getElementReaders() - Method in class org.springframework.extensions.config.xml.XMLConfigService
Get the elementReaders from the in-memory 'cache'
getEvaluator(String) - Method in class org.springframework.extensions.config.BaseConfigService
Retrieves the implementation of the named evaluator
getEvaluator() - Method in interface org.springframework.extensions.config.ConfigSection
Returns the name of an evaluator to use to determine whether the config section this object represents is applicable to the current lookup operation
getEvaluator() - Method in class org.springframework.extensions.config.ConfigSectionImpl
 
getEvaluators() - Method in class org.springframework.extensions.config.BaseConfigService
Get evaluators from the in-memory 'cache'
getGlobalConfig() - Method in class org.springframework.extensions.config.BaseConfigService
 
getGlobalConfig() - Method in interface org.springframework.extensions.config.ConfigService
Returns just the global configuration, this allows the config service to be used independently of objects if desired (all config is placed in a global section).
getGlobalConfigImpl() - Method in class org.springframework.extensions.config.BaseConfigService
Get globalConfig from the in-memory 'cache'
getInputStream(String) - Method in class org.springframework.extensions.config.source.BaseConfigSource
Retrieves an InputStream to the source represented by the given source location.
getInputStream(String) - Method in class org.springframework.extensions.config.source.ClassPathConfigSource
Retrieves an input stream for the given class path source
getInputStream(String) - Method in class org.springframework.extensions.config.source.FileConfigSource
 
getInputStream(String) - Method in class org.springframework.extensions.config.source.HTTPConfigSource
Retrieves an input stream over HTTP for the given URL
getInputStream(String) - Method in class org.springframework.extensions.config.source.JarConfigSource
 
getInputStream(String) - Method in class org.springframework.extensions.config.source.UrlConfigSource
 
getName() - Method in class org.springframework.extensions.config.ConfigDeployment
 
getName() - Method in interface org.springframework.extensions.config.ConfigElement
Returns the name of this config element
getName() - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
getSections() - Method in class org.springframework.extensions.config.BaseConfigService
Get the sections from the in-memory 'cache'
getSectionsByArea() - Method in class org.springframework.extensions.config.BaseConfigService
Get the sectionsByArea from the in-memory 'cache'
getStream() - Method in class org.springframework.extensions.config.ConfigDeployment
 
getValue() - Method in interface org.springframework.extensions.config.ConfigElement
Gets the value of this config element.
getValue() - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 

H

hasAttribute(String) - Method in interface org.springframework.extensions.config.ConfigElement
Determines whether the config element has the named attribute
hasAttribute(String) - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
hasChildren() - Method in interface org.springframework.extensions.config.ConfigElement
Determines whether this config element has any children.
hasChildren() - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 
hasConfigElement(String) - Method in interface org.springframework.extensions.config.Config
Determines whether the given config element exists
hasConfigElement(String) - Method in class org.springframework.extensions.config.ConfigImpl
 
HTTPConfigSource - Class in org.springframework.extensions.config.source
ConfigSource implementation that gets its data via HTTP.
HTTPConfigSource(String) - Constructor for class org.springframework.extensions.config.source.HTTPConfigSource
Constructs an HTTP configuration source that uses a single URL
HTTPConfigSource(List<String>) - Constructor for class org.springframework.extensions.config.source.HTTPConfigSource
Constructs an HTTPConfigSource using the list of URLs

I

includeGlobalSection() - Method in class org.springframework.extensions.config.ConfigLookupContext
 
init() - Method in class org.springframework.extensions.config.BaseConfigService
Deprecated. Should now be initialised via bootstrap mechanism.
initConfig() - Method in class org.springframework.extensions.config.BaseConfigService
Initialises the config service - via bootstrap
initConfig() - Method in class org.springframework.extensions.config.ConfigBootstrap
Method called by ConfigService when the configuration files represented by this ConfigDeployer need to be initialised.
initConfig() - Method in interface org.springframework.extensions.config.ConfigDeployer
 
initConfig() - Method in class org.springframework.extensions.config.xml.XMLConfigService
 
isGlobal() - Method in interface org.springframework.extensions.config.ConfigSection
Determines whether this config section is global
isGlobal() - Method in class org.springframework.extensions.config.ConfigSectionImpl
 
isReplace() - Method in interface org.springframework.extensions.config.ConfigSection
Determines whether the config elements found inside this section should replace any previously found config elements with the same name
isReplace() - Method in class org.springframework.extensions.config.ConfigSectionImpl
 

J

JAR_PATH_SEPARATOR - Static variable in class org.springframework.extensions.config.source.JarConfigSource
 
JAR_PROTOCOL - Static variable in class org.springframework.extensions.config.source.JarConfigSource
 
JarConfigSource - Class in org.springframework.extensions.config.source
ConfigSource implementation that gets its data via a file within a JAR file.
JarConfigSource(String) - Constructor for class org.springframework.extensions.config.source.JarConfigSource
Constructs a JarConfigSource

N

name - Variable in class org.springframework.extensions.config.element.ConfigElementAdapter
 

O

ObjectTypeEvaluator - Class in org.springframework.extensions.config.evaluator
Evaluator that tests whether an object is equal to the given class name
ObjectTypeEvaluator() - Constructor for class org.springframework.extensions.config.evaluator.ObjectTypeEvaluator
 
onBootstrap(ApplicationEvent) - Method in class org.springframework.extensions.config.BaseConfigService
Initialise config on bootstrap
onShutdown(ApplicationEvent) - Method in class org.springframework.extensions.config.BaseConfigService
Destroy config in shutdown
org.springframework.extensions.config - package org.springframework.extensions.config
 
org.springframework.extensions.config.element - package org.springframework.extensions.config.element
 
org.springframework.extensions.config.evaluator - package org.springframework.extensions.config.evaluator
 
org.springframework.extensions.config.source - package org.springframework.extensions.config.source
 
org.springframework.extensions.config.xml - package org.springframework.extensions.config.xml
 
org.springframework.extensions.config.xml.elementreader - package org.springframework.extensions.config.xml.elementreader
 

P

parse() - Method in class org.springframework.extensions.config.BaseConfigService
Parses all the files passed to this config service
parse(InputStream) - Method in class org.springframework.extensions.config.BaseConfigService
Parses the given config stream
parse(Element) - Method in interface org.springframework.extensions.config.xml.elementreader.ConfigElementReader
Parses the given XML element into a ConfigElement object
parse(Element) - Method in class org.springframework.extensions.config.xml.elementreader.GenericElementReader
 
parse(InputStream) - Method in class org.springframework.extensions.config.xml.XMLConfigService
 
PREFIX_CLASSPATH - Static variable in class org.springframework.extensions.config.source.UrlConfigSource
 
PREFIX_FILE - Static variable in class org.springframework.extensions.config.source.UrlConfigSource
 
PREFIX_HTTP - Static variable in class org.springframework.extensions.config.source.UrlConfigSource
 
PREFIX_JAR - Static variable in class org.springframework.extensions.config.source.UrlConfigSource
 
PREFIX_WEBAPP - Static variable in class org.springframework.extensions.config.source.UrlConfigSource
 
process(ConfigSection, Evaluator, Object, Config) - Method in interface org.springframework.extensions.config.ConfigLookupAlgorithm
Determines whether the given section applies to the given object, if so the section is added to the results
process(ConfigSection, Evaluator, Object, Config) - Method in class org.springframework.extensions.config.DefaultLookupAlgorithm
 
processChildren(Element, GenericConfigElement) - Method in class org.springframework.extensions.config.xml.elementreader.GenericElementReader
Recursively processes the children creating the required config element objects as it goes
processSection(ConfigSection, Object, ConfigLookupContext, ConfigImpl) - Method in class org.springframework.extensions.config.BaseConfigService
Determines whether the given section applies for the given object, if it does, the section is added to given results object.
processSourceString(String) - Method in class org.springframework.extensions.config.source.UrlConfigSource
Processes the given source string and adds the resulting config source files to the list to be parsed.
processWildcardJarSource(String) - Method in class org.springframework.extensions.config.source.UrlConfigSource
Processes the given JAR file pattern source.
putConfigElement(ConfigElement) - Method in class org.springframework.extensions.config.ConfigImpl
Adds a config element to the results of the lookup replacing any config element already present with the same name
putElementReaders(Map<String, ConfigElementReader>) - Method in class org.springframework.extensions.config.xml.XMLConfigService
Put the elementReaders into the in-memory 'cache'
putEvaluators(Map<String, Evaluator>) - Method in class org.springframework.extensions.config.BaseConfigService
Put evaluators into the in-memory 'cache'
putGlobalConfig(ConfigImpl) - Method in class org.springframework.extensions.config.BaseConfigService
Put globalConfig into the in-memory 'cache'
putSections(List<ConfigSection>) - Method in class org.springframework.extensions.config.BaseConfigService
Put the sections into the in-memory 'cache'
putSectionsByArea(Map<String, List<ConfigSection>>) - Method in class org.springframework.extensions.config.BaseConfigService
Put the sectionsByArea into the in-memory 'cache'

R

register() - Method in class org.springframework.extensions.config.ConfigBootstrap
Registers this object with the injected ConfigService
register() - Method in interface org.springframework.extensions.config.ConfigDeployer
 
removeElementReaders() - Method in class org.springframework.extensions.config.xml.XMLConfigService
Remove the elementReaders from the in-memory 'cache'
removeEvaluators() - Method in class org.springframework.extensions.config.BaseConfigService
Remove evaluators from in-memory 'cache'
removeGlobalConfig() - Method in class org.springframework.extensions.config.BaseConfigService
Remove globalConfig from the in-memory 'cache'
removeSections() - Method in class org.springframework.extensions.config.BaseConfigService
Remove the sections from the in-memory 'cache'
removeSectionsByArea() - Method in class org.springframework.extensions.config.BaseConfigService
Remove the sectionsByArea from the in-memory 'cache'
reset() - Method in class org.springframework.extensions.config.BaseConfigService
Resets the config service
reset() - Method in interface org.springframework.extensions.config.ConfigService
Resets the Config Service
resolveStringValue(String) - Method in class org.springframework.extensions.config.xml.XMLConfigService.PlaceholderResolvingStringValueResolver
 
resolveValue(String) - Method in class org.springframework.extensions.config.xml.XMLConfigService.PropertyConfigurer
Resolve values

S

setAlgorithm(ConfigLookupAlgorithm) - Method in class org.springframework.extensions.config.ConfigLookupContext
 
setAreas(List<String>) - Method in class org.springframework.extensions.config.ConfigLookupContext
 
setConfigs(List<String>) - Method in class org.springframework.extensions.config.ConfigBootstrap
Set the configs
setConfigService(ConfigService) - Method in class org.springframework.extensions.config.ConfigBootstrap
Sets the ConfigService instance to deploy to
setDeploymentStatus(String) - Method in class org.springframework.extensions.config.ConfigDeployment
 
setIncludeGlobalSection(boolean) - Method in class org.springframework.extensions.config.ConfigLookupContext
 
setProperties(Resource[]) - Method in class org.springframework.extensions.config.xml.XMLConfigService
Set locations of properties files to be loaded.
setServletContext(ServletContext) - Method in class org.springframework.extensions.config.source.UrlConfigSource
 
setSystemPropertiesModeName(String) - Method in class org.springframework.extensions.config.xml.XMLConfigService
Set the system property mode by the name of the corresponding constant, e.g.
setValue(String) - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
Sets the value of this config element
STATUS_OK - Static variable in class org.springframework.extensions.config.ConfigDeployment
 
STATUS_UNKNOWN - Static variable in class org.springframework.extensions.config.ConfigDeployment
 
StringEvaluator - Class in org.springframework.extensions.config.evaluator
Evaluator that tests whether an object is equal to a string
StringEvaluator() - Constructor for class org.springframework.extensions.config.evaluator.StringEvaluator
 

T

toString() - Method in class org.springframework.extensions.config.ConfigSectionImpl
 
toString() - Method in class org.springframework.extensions.config.element.ConfigElementAdapter
 

U

UrlConfigSource - Class in org.springframework.extensions.config.source
ConfigSource that looks for a prefix to determine where to look for the config.
Valid prefixes are: file: the location provided is a path to a physical file classpath: the location provided is a resource on the classpath http: the location provided is a HTTP address jar: the location provided is within a JAR file.
UrlConfigSource(String) - Constructor for class org.springframework.extensions.config.source.UrlConfigSource
Constructs a config location that figures out where to look for the config
UrlConfigSource(List<String>) - Constructor for class org.springframework.extensions.config.source.UrlConfigSource
Constructs a config location that figures out where to look for the config

V

value - Variable in class org.springframework.extensions.config.element.ConfigElementAdapter
 

X

XMLConfigConstants - Interface in org.springframework.extensions.config.xml
Constants for the XML configuration service
XMLConfigService - Class in org.springframework.extensions.config.xml
XML based configuration service.
XMLConfigService(ConfigSource) - Constructor for class org.springframework.extensions.config.xml.XMLConfigService
Constructs an XMLConfigService using the given config source
XMLConfigService.PlaceholderResolvingStringValueResolver - Class in org.springframework.extensions.config.xml
BeanDefinitionVisitor that resolves placeholders in String values, delegating to the parseStringValue method of the containing class.
XMLConfigService.PlaceholderResolvingStringValueResolver(Properties, String, String, String, boolean) - Constructor for class org.springframework.extensions.config.xml.XMLConfigService.PlaceholderResolvingStringValueResolver
 
XMLConfigService.PropertyConfigurer - Class in org.springframework.extensions.config.xml
Provides access to property values
XMLConfigService.PropertyConfigurer() - Constructor for class org.springframework.extensions.config.xml.XMLConfigService.PropertyConfigurer
 

A B C D E F G H I J N O P R S T U V X

Copyright © 2009 SpringSource, Inc. All Rights Reserved.