Package org.compiere.util
Class EnvLoader
- java.lang.Object
-
- org.compiere.util.EnvLoader
-
public class EnvLoader extends Object
Environment Loader - loads system environment variables int System.properties- Version:
- $Id: EnvLoader.java,v 1.3 2006/07/30 00:51:05 jjanke Exp $
- Author:
- Jorg Janke
-
-
Constructor Summary
Constructors Constructor Description EnvLoader()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Properties
getEnv(String prefix)
Ger Environment variablesstatic boolean
load(String prefix)
Load System environment variables into System.properies
-
-
-
Method Detail
-
load
public static boolean load(String prefix)
Load System environment variables into System.properiesPrints error messages on System.err
- Parameters:
prefix
- String to prefix variable names- Returns:
- true if success
-
getEnv
public static Properties getEnv(String prefix)
Ger Environment variables- Parameters:
prefix
- String to prefix variable names- Returns:
- Properties with prefixed system environment variables or null if not successful
-
-