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 2012/12/25 21:12:17 UTC

svn commit: r1425767 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/Lookup.java

Author: oheger
Date: Tue Dec 25 20:12:16 2012
New Revision: 1425767

URL: http://svn.apache.org/viewvc?rev=1425767&view=rev
Log:
[CONFIGURATION-518] Added new Lookup interface as a wrapper around the StrLookup class from [lang].

Added:
    commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/Lookup.java   (with props)

Added: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/Lookup.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/Lookup.java?rev=1425767&view=auto
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/Lookup.java (added)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/Lookup.java Tue Dec 25 20:12:16 2012
@@ -0,0 +1,60 @@
+/*
+ * 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.configuration.interpol;
+
+/**
+ * <p>
+ * Definition of an interface for looking up variables during interpolation.
+ * </p>
+ * <p>
+ * Objects implementing this interface can be assigned a variable prefix and
+ * added to a {@link ConfigurationInterpolator} object. Whenever the
+ * {@code ConfigurationInterpolator} encounters a property value referencing a
+ * variable, e.g. <code>${prefix:variableName}</code>, it extracts the prefix
+ * and finds the matching {@code Lookup} object. Then this object is asked to
+ * resolve the variable name and provide the corresponding value.
+ * </p>
+ * <p>
+ * This interface defines a single method for performing variable lookup. It is
+ * passed the name of a variable and has to return the corresponding value. It
+ * is of course up to a specific implementation how this is done. If the
+ * variable name cannot be resolved, an implementation has to return
+ * <b>null</b>.
+ * </p>
+ * <p>
+ * Note: Implementations must be aware that they can be accessed concurrently.
+ * This is for instance the case if a configuration object is read by multiple
+ * threads or if a {@code Lookup} object is shared by multiple configurations.
+ * </p>
+ *
+ * @version $Id$
+ * @since 2.0
+ */
+public interface Lookup
+{
+    /**
+     * Looks up the value of the specified variable. This method is called by
+     * {@link ConfigurationInterpolator} with the variable name extracted from
+     * the expression to interpolate (i.e. the prefix name has already been
+     * removed). A concrete implementation has to return the value of this
+     * variable or <b>null</b> if the variable name is unknown.
+     *
+     * @param variable the name of the variable to be resolved
+     * @return the value of this variable or <b>null</b>
+     */
+    Object lookup(String variable);
+}

Propchange: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/Lookup.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/Lookup.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/interpol/Lookup.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain