1 package nl.tno.imb.mc;
2
3 /**
4 * STUB; dummy configuration manager
5 * <p>
6 * Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
7 * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
8 * <p>
9 * @version $Revision$, $LastChangedDate$, by $Author$,
10 * initial version Oct 17, 2016 <br>
11 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
12 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
13 * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
14 */
15 public class ConfigurationManager
16 {
17
18 /**
19 * Can not be instantiated
20 */
21 private ConfigurationManager()
22 {
23 // Never instantiated
24 }
25
26 /**
27 * STUB
28 * @param settingName
29 * @return null
30 * @throws ConfigurationErrorsException Not gonna happen in this STUB
31 */
32 public static String appSettings(String settingName) throws ConfigurationErrorsException
33 {
34 return null;
35 }
36
37 }