Author: oheger
Date: Sat Aug 23 20:12:32 2014
New Revision: 1620067
URL: http://svn.apache.org/r1620067
Log:
Replaced package.html files by package-info.java files.
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/beanutils/package-info.java
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/convert/package-info.java
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/package-info.java
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ex/package-info.java
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/package-info.java
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/package-info.java
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/plist/package-info.java
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/reloading/package-info.java
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/resolver/package-info.java
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/sync/package-info.java
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/tree/package-info.java
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/tree/xpath/package-info.java
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/web/package-info.java
Removed:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/beanutils/package.html
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/convert/package.html
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/package.html
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ex/package.html
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/package.html
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/package.html
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/plist/package.html
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/reloading/package.html
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/resolver/package.html
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/sync/package.html
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/tree/package.html
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/tree/xpath/package.html
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/web/package.html
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/beanutils/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/beanutils/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/beanutils/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/beanutils/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,29 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * In this package a <code>Configuration</code> implementation can be found
that
+ * implements the <code>DynaBean</code> interface. It allows to access or
modify
+ * a configuration using the classes from the Commons Beanutils package.
+ * There are also classes for declaring beans in configuration files, from
which
+ * then instances can be created.
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration.beanutils;
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/convert/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/convert/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/convert/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/convert/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,39 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * This package contains interfaces and classes related to data type
conversions.
+ * </p>
+ * <p>
+ * An <code>AbstractConfiguration</code> object is associated with an object
+ * responsible for data type conversions. Each conversion is done by this
object.
+ * By replacing the default conversion handler by a custom version, client
+ * applications can adapt and extend the type conversions available.
+ * </p>
+ * <p>
+ * Related to data type conversion is also the topic of list delimiter parsing
+ * and splitting; before a string value can be converted to a target data type,
+ * it must be clear whether it is to be interpreted as a single value or as a
+ * list containing multiple values. In this package there are classes
implementing
+ * different strategies for list delimiter handling. Client code can choose the
+ * one which is most suitable for the current use case.
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration.convert;
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,26 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * This package contains interfaces and classes for receiving notifications
+ * about changes at configurations.
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration.event;
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ex/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ex/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ex/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ex/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,30 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * This package contains all exception classes used by this library.
+ * </p>
+ * <p>
+ * <em>Commons Configuration</em> defines a small number of exception classes.
+ * Because these classes are referenced by multiple other packages, they are
+ * located in their own package to avoid cyclic dependencies.
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration.ex;
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * A package with helper classes used for interpolation (variable
substitution).
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration.interpol;
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,28 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * The Configuration main package. It contains the definition of the
+ * <code>Configuration</code> interface and frequently used implementations
+ * like <code>PropertiesConfiguration</code> (dealing with
<code>.properties</code>
+ * files) or <code>XMLConfiguration</code> that can load XML documents.
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration;
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/plist/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/plist/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/plist/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/plist/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * Configuration classes supporting NeXT / OpenStep /GNUStep style
configuration.
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration.plist;
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/reloading/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/reloading/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/reloading/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/reloading/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,31 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * This package contains classes and interfaces related to the reloading
mechanism.
+ * </p>
+ * <p>
+ * Using these classes it is possible to monitor configuration sources for
+ * external changes. When a change is detected notifications are sent out.
+ * In collaboration with a <em>configuration builder</em> reloading can happen
+ * transparently in background.
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration.reloading;
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/resolver/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/resolver/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/resolver/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/resolver/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * A package containing EntityResolvers.
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration.resolver;
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/sync/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/sync/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/sync/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/sync/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,37 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * A package containing interfaces and classes related to synchronization of
+ * configurations.
+ * </p>
+ * <p>
+ * Whether a configuration object has to be thread-safe or not is
application-specific.
+ * Therefore, this library allows an application to adapt configuration
objects to
+ * their requirements regarding thread-safety by assigning them so-called
+ * {@code Synchronizer} objects. A configuration invokes its
+ * {@code Synchronizer} every time it is accessed (in read or write mode).
+ * If configurations are not accessed concurrently by multiple threads, a
simple
+ * dummy {@code Synchronizer} can be used - this is also the default
+ * setting. To ensure thread-safety, a fully functional implementation has to
be
+ * set.
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration.sync;
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/tree/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/tree/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/tree/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/tree/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * A package with helper and utility classes used by hierarchical
configurations.
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration.tree;
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/tree/xpath/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/tree/xpath/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/tree/xpath/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/tree/xpath/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,26 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * This package contains the {@code XPathExpressionEngine} class which
+ * enables XPATH support for querying configuration properties.
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration.tree.xpath;
Added:
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/web/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/web/package-info.java?rev=1620067&view=auto
==============================================================================
---
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/web/package-info.java
(added)
+++
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/web/package-info.java
Sat Aug 23 20:12:32 2014
@@ -0,0 +1,26 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * This package contains some implementations of the {@code Configuration}
+ * interface that are useful in web environments.
+ * </p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.configuration.web;