You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by oh...@apache.org on 2014/11/11 21:44:05 UTC

svn commit: r1638378 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/ConfigurationDecoder.java

Author: oheger
Date: Tue Nov 11 20:44:04 2014
New Revision: 1638378

URL: http://svn.apache.org/r1638378
Log:
Added ConfigurationDecoder interface.

This interface will be used when querying encoded strings from a configuration
file.

Added:
    commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/ConfigurationDecoder.java

Added: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/ConfigurationDecoder.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/ConfigurationDecoder.java?rev=1638378&view=auto
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/ConfigurationDecoder.java (added)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/ConfigurationDecoder.java Tue Nov 11 20:44:04 2014
@@ -0,0 +1,50 @@
+/*
+ * 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.
+ */
+package org.apache.commons.configuration2;
+
+/**
+ * <p>
+ * An interface for decoding encoded values from a configuration source.
+ * </p>
+ * <p>
+ * Using this interface it is possible to store encoded or encrypted values in a
+ * configuration file. An implementing object can be assigned to a configuration
+ * object. The {@code getEncodedString()} method of the
+ * {@link ImmutableConfiguration} interface makes use of this instance to decode
+ * the value read from the configuration file before it is passed to the caller.
+ * </p>
+ * <p>
+ * By providing custom implementations of this interface an application can add
+ * support for different kinds of encoded strings in configuration files.
+ * </p>
+ *
+ * @version $Id$
+ * @since 2.0
+ */
+public interface ConfigurationDecoder
+{
+    /**
+     * Decodes the specified string. This method is called with a string in
+     * encoded form read from a configuration file. An implementation has to be
+     * perform an appropriate decoding and return the result. This result is
+     * passed to the calling application; so it should be in a readable form.
+     *
+     * @param s the string to be decoded (not <b>null</b>)
+     * @return the decoded string
+     */
+    String decode(String s);
+}