1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.reactive.beans.factory.config;
18
19 /***
20 * Evalutates a placeholder returning the value retrieved from the configuration source.
21 *
22 * @author Dan Washusen
23 * @version $Id: PlaceholderEvaluator.java,v 1.2 2004/12/29 11:59:31 dan_washusen Exp $
24 * @since 16.12.2004
25 */
26 public interface PlaceholderEvaluator {
27 /***
28 * Evaluates an expression to a value defined in the configuration agent.
29 * @param placeholder The placeholder to evaluate
30 * @return The value returned from the configuration source
31 */
32 Object evaluate(Placeholder placeholder);
33 }