Class SystemEnvSymbolProvider
- java.lang.Object
 - 
- org.apache.tapestry5.ioc.internal.services.SystemEnvSymbolProvider
 
 
- 
- All Implemented Interfaces:
 SymbolProvider
public class SystemEnvSymbolProvider extends Object implements SymbolProvider
Provides case insensitive access to environment variables. Environment variable symbols are prefixed with "env.".- Since:
 - 5.3
 
 
- 
- 
Constructor Summary
Constructors Constructor Description SystemEnvSymbolProvider() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringvalueForSymbol(String symbolName)Returns the value for the symbol, or null if this provider can not provide a value. 
 - 
 
- 
- 
Constructor Detail
- 
SystemEnvSymbolProvider
public SystemEnvSymbolProvider()
 
 - 
 
- 
Method Detail
- 
valueForSymbol
public String valueForSymbol(String symbolName)
Description copied from interface:SymbolProviderReturns the value for the symbol, or null if this provider can not provide a value. The value itself may contain symbols that will be recursively expanded.- Specified by:
 valueForSymbolin interfaceSymbolProvider- Returns:
 - the value or null
 
 
 - 
 
 -