Serialized Form


Package org.apache.commons.configuration

Class org.apache.commons.configuration.AbstractHierarchicalFileConfiguration extends HierarchicalConfiguration implements Serializable

Serialized Fields

delegate

AbstractHierarchicalFileConfiguration.FileConfigurationDelegate delegate
Stores the delegate used for implementing functionality related to the FileConfiguration interface.

Class org.apache.commons.configuration.CombinedConfiguration extends HierarchicalReloadableConfiguration implements Serializable

serialVersionUID: 8338574525528692307L

Serialized Fields

nodeCombiner

NodeCombiner nodeCombiner
Stores the combiner.


combinedRoot

ConfigurationNode combinedRoot
Stores the combined root node.


configurations

java.util.List<E> configurations
Stores a list with the contained configurations.


namedConfigurations

java.util.Map<K,V> namedConfigurations
Stores a map with the named configurations.


ignoreReloadExceptions

boolean ignoreReloadExceptions
The default behavior is to ignore exceptions that occur during reload


reloadRequired

boolean reloadRequired
Set to true when the backing file has changed


conversionExpressionEngine

ExpressionEngine conversionExpressionEngine
An expression engine used for converting child configurations to hierarchical ones.


forceReloadCheck

boolean forceReloadCheck
A flag whether an enhanced reload check is to be performed.

Class org.apache.commons.configuration.ConfigurationException extends org.apache.commons.lang.exception.NestableException implements Serializable

serialVersionUID: -1316746661346991484L

Class org.apache.commons.configuration.ConfigurationKey extends java.lang.Object implements Serializable

serialVersionUID: -4299732083605277656L

Serialized Fields

keyBuffer

java.lang.StringBuilder keyBuffer
Deprecated. 
Holds a buffer with the so far created key.

Class org.apache.commons.configuration.ConfigurationRuntimeException extends org.apache.commons.lang.exception.NestableRuntimeException implements Serializable

serialVersionUID: -7838702245512140996L

Class org.apache.commons.configuration.ConversionException extends ConfigurationRuntimeException implements Serializable

serialVersionUID: -5167943099293540392L

Class org.apache.commons.configuration.DataConfiguration extends AbstractConfiguration implements Serializable

serialVersionUID: -69011336405718640L

Serialized Fields

configuration

Configuration configuration
Stores the wrapped configuration.

Class org.apache.commons.configuration.DefaultConfigurationBuilder extends XMLConfiguration implements Serializable

serialVersionUID: -3113777854714492123L

Serialized Fields

combinedConfigLookup

org.apache.commons.lang.text.StrLookup combinedConfigLookup
A specialized StrLookup object which operates on the combined configuration constructed by this builder. This object is used as default lookup for ConfigurationInterpolator objects assigned to newly created configuration objects.


constructedConfiguration

CombinedConfiguration constructedConfiguration
Stores the configuration that is currently constructed.


providers

java.util.Map<K,V> providers
Stores a map with the registered configuration providers.


configurationBasePath

java.lang.String configurationBasePath
Stores the base path to the configuration sources to load.

Class org.apache.commons.configuration.DynamicCombinedConfiguration extends CombinedConfiguration implements Serializable

Serialized Fields

configs

java.util.concurrent.ConcurrentMap<K,V> configs
The CombinedConfigurations


configurations

java.util.List<E> configurations
Stores a list with the contained configurations.


namedConfigurations

java.util.Map<K,V> namedConfigurations
Stores a map with the named configurations.


keyPattern

java.lang.String keyPattern
The key pattern for the CombinedConfiguration map


nodeCombiner

NodeCombiner nodeCombiner
Stores the combiner.


loggerName

java.lang.String loggerName
The name of the logger to use for each CombinedConfiguration


localSubst

org.apache.commons.lang.text.StrSubstitutor localSubst
The object for handling variable substitution in key patterns.

Class org.apache.commons.configuration.HierarchicalConfiguration extends AbstractConfiguration implements Serializable

serialVersionUID: 3373812230395363192L

Serialized Fields

root

HierarchicalConfiguration.Node root
Stores the root node of this configuration. This field is required for backwards compatibility only.


rootNode

ConfigurationNode rootNode
Stores the root configuration node.

Class org.apache.commons.configuration.HierarchicalConfiguration.Node extends DefaultConfigurationNode implements Serializable

serialVersionUID: -6357500633536941775L

Class org.apache.commons.configuration.HierarchicalINIConfiguration extends AbstractHierarchicalFileConfiguration implements Serializable

serialVersionUID: 2548006161386850670L

Class org.apache.commons.configuration.HierarchicalReloadableConfiguration extends HierarchicalConfiguration implements Serializable

Serialized Fields

reloadLock

java.lang.Object reloadLock
The lock object used by this instance.

Class org.apache.commons.configuration.HierarchicalXMLConfiguration extends XMLConfiguration implements Serializable

serialVersionUID: 5597530014798917521L

Class org.apache.commons.configuration.MultiFileHierarchicalConfiguration extends AbstractHierarchicalFileConfiguration implements Serializable

Serialized Fields

configurationsMap

java.util.concurrent.ConcurrentMap<K,V> configurationsMap
Map of configurations


pattern

java.lang.String pattern
key pattern for configurationsMap


init

boolean init
True if the constructor has finished


ignoreException

boolean ignoreException
Return an empty configuration if loading fails


schemaValidation

boolean schemaValidation
Capture the schema validation setting


validating

boolean validating
Stores a flag whether DTD or Schema validation should be performed.


attributeSplittingDisabled

boolean attributeSplittingDisabled
A flag whether attribute splitting is disabled.


loggerName

java.lang.String loggerName
The Logger name to use


fileStrategy

ReloadingStrategy fileStrategy
The Reloading strategy to use on created configurations


entityResolver

org.xml.sax.EntityResolver entityResolver
The EntityResolver


localSubst

org.apache.commons.lang.text.StrSubstitutor localSubst
The internally used helper object for variable substitution.

Class org.apache.commons.configuration.PatternSubtreeConfigurationWrapper extends AbstractHierarchicalFileConfiguration implements Serializable

Serialized Fields

config

AbstractHierarchicalFileConfiguration config
The wrapped configuration


path

java.lang.String path
The path to the subtree


trailing

boolean trailing
True if the path ends with '/', false otherwise


init

boolean init
True if the constructor has finished

Class org.apache.commons.configuration.SubnodeConfiguration extends HierarchicalReloadableConfiguration implements Serializable

serialVersionUID: 3105734147019386480L

Serialized Fields

parent

HierarchicalConfiguration parent
Stores the parent configuration.


subnodeKey

java.lang.String subnodeKey
Stores the key that was used to construct this configuration.

Class org.apache.commons.configuration.XMLConfiguration extends AbstractHierarchicalFileConfiguration implements Serializable

serialVersionUID: 2453781111653383552L

Serialized Fields

document

org.w3c.dom.Document document
The document from this configuration's data source.


rootElementName

java.lang.String rootElementName
Stores the name of the root element.


publicID

java.lang.String publicID
Stores the public ID from the DOCTYPE.


systemID

java.lang.String systemID
Stores the system ID from the DOCTYPE.


documentBuilder

javax.xml.parsers.DocumentBuilder documentBuilder
Stores the document builder that should be used for loading.


validating

boolean validating
Stores a flag whether DTD or Schema validation should be performed.


schemaValidation

boolean schemaValidation
Stores a flag whether DTD or Schema validation is used


attributeSplittingDisabled

boolean attributeSplittingDisabled
A flag whether attribute splitting is disabled.


entityResolver

org.xml.sax.EntityResolver entityResolver
The EntityResolver to use


Package org.apache.commons.configuration.event

Class org.apache.commons.configuration.event.ConfigurationErrorEvent extends ConfigurationEvent implements Serializable

serialVersionUID: -7433184493062648409L

Serialized Fields

cause

java.lang.Throwable cause
Stores the exception that caused this event.

Class org.apache.commons.configuration.event.ConfigurationEvent extends java.util.EventObject implements Serializable

serialVersionUID: 3277238219073504136L

Serialized Fields

type

int type
Stores the event type.


propertyName

java.lang.String propertyName
Stores the property name.


propertyValue

java.lang.Object propertyValue
Stores the property value.


beforeUpdate

boolean beforeUpdate
Stores the before update flag.


Package org.apache.commons.configuration.interpol

Class org.apache.commons.configuration.interpol.ExprLookup.Variables extends java.util.ArrayList<ExprLookup.Variable> implements Serializable

serialVersionUID: 20111205L


Package org.apache.commons.configuration.plist

Class org.apache.commons.configuration.plist.ParseException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.

Class org.apache.commons.configuration.plist.PropertyListConfiguration extends AbstractHierarchicalFileConfiguration implements Serializable

serialVersionUID: 3227248503779092127L

Class org.apache.commons.configuration.plist.Token extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

kind

int kind
An integer that describes the kind of this token. This numbering system is determined by JavaCCParser, and a table of these numbers is stored in the file ...Constants.java.


beginLine

int beginLine
The line number of the first character of this Token.


beginColumn

int beginColumn
The column number of the first character of this Token.


endLine

int endLine
The line number of the last character of this Token.


endColumn

int endColumn
The column number of the last character of this Token.


image

java.lang.String image
The string image of the token.


next

Token next
A reference to the next regular (non-special) token from the input stream. If this is the last token from the input stream, or if the token manager has not read tokens beyond this one, this field is set to null. This is true only if this token is also a regular token. Otherwise, see below for a description of the contents of this field.


specialToken

Token specialToken
This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token. If there are no such special tokens, this field is set to null. When there are more than one such special token, this field refers to the last of these special tokens, which in turn refers to the next previous special token through its specialToken field, and so on until the first special token (whose specialToken field is null). The next fields of special tokens refer to other special tokens that immediately follow it (without an intervening regular token). If there is no such token, this field is null.

Class org.apache.commons.configuration.plist.TokenMgrError extends java.lang.Error implements Serializable

serialVersionUID: 1L

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.

Class org.apache.commons.configuration.plist.XMLPropertyListConfiguration extends AbstractHierarchicalFileConfiguration implements Serializable

serialVersionUID: -3162063751042475985L

Class org.apache.commons.configuration.plist.XMLPropertyListConfiguration.ArrayNode extends XMLPropertyListConfiguration.PListNode implements Serializable

serialVersionUID: 5586544306664205835L

Serialized Fields

list

java.util.List<E> list
The list of values in the array.

Class org.apache.commons.configuration.plist.XMLPropertyListConfiguration.PListNode extends HierarchicalConfiguration.Node implements Serializable

serialVersionUID: -7614060264754798317L



Copyright © 2001-2013. All Rights Reserved.