Class EnvarBasedValueSource
java.lang.Object
org.codehaus.plexus.interpolation.fixed.EnvarBasedValueSource
- All Implemented Interfaces:
FixedValueSource
ValueSource
which resolves expressions against the environment variables
available from the underlying operating system (and possibly, the shell environment
that created the present Java process). If the expression starts with 'env.',
this prefix is trimmed before resolving the rest as an environment variable name.-
Constructor Summary
ConstructorDescriptionCreate a new value source for interpolation based on shell environment variables.EnvarBasedValueSource
(boolean caseSensitive) Create a new value source for interpolation based on shell environment variables. -
Method Summary
Modifier and TypeMethodDescriptiongetValue
(String expression, InterpolationState interpolationState) If the expression starts with 'env.' then trim this prefix.
-
Constructor Details
-
EnvarBasedValueSource
Create a new value source for interpolation based on shell environment variables. In this case, envar keys ARE CASE SENSITIVE.- Throws:
IOException
- in case of an error.
-
EnvarBasedValueSource
Create a new value source for interpolation based on shell environment variables.- Parameters:
caseSensitive
- Whether the environment variable key should be treated in a case-sensitive manner for lookups- Throws:
IOException
- in case of an error.
-
-
Method Details
-
getValue
If the expression starts with 'env.' then trim this prefix. Next, resolve the (possibly trimmed) expression as an environment variable name against the collection of environment variables that were read from the operating system when thisValueSource
instance was created.- Specified by:
getValue
in interfaceFixedValueSource
- Parameters:
expression
- envar expression, like 'HOME' or 'env.HOME'interpolationState
-InterpolationState
.- Returns:
- the environment variable value for the given expression
-