Interface EnvironmentSettings


public interface EnvironmentSettings
  • Method Summary

    Modifier and Type
    Method
    Description
    get(String name)
    Returns the String value of the environment setting for name.
    void
    put(String name, String value)
    Puts a environment value for environment parameter name
  • Method Details

    • get

      String get(String name)
      Returns the String value of the environment setting for name. 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
    • put

      void put(String name, String value)
      Puts a environment value for environment parameter name
      Parameters:
      name - the name of the environment parameter
      value - the value of the environment parameter