Properties
Components often want to store and retrieve configuration settings between invocations. An API is provided for this purpose.
Configuration is handled by the setting and getting of properties using the org.geworkbench.engine.properties.PropertyManager class. A singleton instance is available to process requests.
The two important methods of this class are:
public void setProperty(Class component, String key, String value) throws IOException
and
public String getProperty(Class component, String key, String defaultValue) throws IOException