Package com.tangosol.coherence.config
Class EnvironmentVariableResolver.Default
- java.lang.Object
-
- com.tangosol.coherence.config.EnvironmentVariableResolver.Default
-
- All Implemented Interfaces:
EnvironmentVariableResolver
- Enclosing interface:
- EnvironmentVariableResolver
public static class EnvironmentVariableResolver.Default extends Object implements EnvironmentVariableResolver
DefaultEnvironmentVariableResolver
implementation.This implementation simply delegates to
System.getenv(String)
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.tangosol.coherence.config.EnvironmentVariableResolver
EnvironmentVariableResolver.Default
-
-
Constructor Summary
Constructors Constructor Description Default()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEnv(String sVarName)
Return the value of the specified environment variable.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.tangosol.coherence.config.EnvironmentVariableResolver
getEnv
-
-
-
-
Method Detail
-
getEnv
public String getEnv(String sVarName)
Description copied from interface:EnvironmentVariableResolver
Return the value of the specified environment variable.- Specified by:
getEnv
in interfaceEnvironmentVariableResolver
- Parameters:
sVarName
- the name of the environment variable to return- Returns:
- the value of the specified environment variable
-
-