Package org.apache.guacamole.properties
Interface GuacamoleProperties
-
- All Known Implementing Classes:
FileGuacamoleProperties
,PropertiesGuacamoleProperties
public interface GuacamoleProperties
An arbitrary set of Guacamole configuration property name/value pairs. This interface is similar in concept toProperties
except 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 String
getProperty(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.
-
-