System.getGlobalVariableAsString()
Signature
String getGlobalVariableAsString (String propertyKey, String defaultValue)
Domain
action, condition, query
Description
Returns the requested global variable's value as a String.
Parameters
Name | Type | Description |
propertyKey | String | The property key to get the value for. |
defaultValue | String | The value to return if the requested value is not present. |
Returns
Type | Description |
String | The requested global variable's value as a String. |
Example
System.getGlobalVariableAsString ("Deployment", "Not present");
Result is: The String "BeTestDeployment".