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 to
Properties
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
Modifier and TypeMethodDescriptiongetProperty
(String name) Returns the value of the property having the given name, if defined.
-
Method Details
-
getProperty
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.
-