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 Type
    Method
    Description
    Returns the value of the property having the given name, if defined.
  • Method Details

    • 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.