public interface IExecutionContext
Modifier and Type | Method and Description |
---|---|
java.util.Map |
getAllProperties()
Method to get all the properties as a ky value pair.
|
java.lang.Object |
getProperty(java.lang.String propName)
Method to get the property value for a property name in argument.
|
java.util.Set |
getPropertyNames()
Method to get an Iterator over the list of properties available.
|
void |
setProperty(java.lang.String propName, java.lang.Object obj)
Method to test if a certain property is available in the list of properties.
|
java.lang.Object getProperty(java.lang.String propName)
propName
- Property name for which the value needs to be retrieved.java.util.Set getPropertyNames()
void setProperty(java.lang.String propName, java.lang.Object obj)
propName
- Property name to test for.java.util.Map getAllProperties()