Package org.apache.guacamole.properties
Interface GuacamoleProperties
-
- All Known Implementing Classes:
FileGuacamoleProperties,PropertiesGuacamoleProperties
public interface GuacamolePropertiesAn arbitrary set of Guacamole configuration property name/value pairs. This interface is similar in concept toPropertiesexcept that implementations are not required to allow properties to be enumerated or iterated. Properties may simply be retrieved by their names, if known.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetProperty(String name)Returns the value of the property having the given name, if defined.
-
-
-
Method Detail
-
getProperty
String getProperty(String name) throws org.apache.guacamole.GuacamoleException
Returns the value of the property having the given name, if defined. If no such property exists, null is returned.- Parameters:
name- The name of the property to retrieve.- Returns:
- The value of the given property, or null if no such property is defined.
- Throws:
org.apache.guacamole.GuacamoleException- If an error prevents the given property from being read.
-
-