Interface EnvironmentSettings
-
public interface EnvironmentSettings
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
get(String name)
Returns the String value of the environment setting forname
.void
put(String name, String value)
Puts a environment value for environment parametername
-
-
-
Method Detail
-
get
String get(String name)
Returns the String value of the environment setting forname
. The String value can represent a more complex object in case it is a json value- Parameters:
name
- the name of the environment parameter- Returns:
- the String value of the environment setting for
name
-
-