Uses of Interface
org.apache.guacamole.properties.GuacamoleProperty
-
Packages that use GuacamoleProperty Package Description org.apache.guacamole.environment org.apache.guacamole.properties Provides classes for reading properties from the web-application-wide guacamole.properties file. -
-
Uses of GuacamoleProperty in org.apache.guacamole.environment
Methods in org.apache.guacamole.environment with parameters of type GuacamoleProperty Modifier and Type Method Description <Type> Type
DelegatingEnvironment. getProperty(GuacamoleProperty<Type> property)
<Type> Type
DelegatingEnvironment. getProperty(GuacamoleProperty<Type> property, Type defaultValue)
<Type> Type
Environment. getProperty(GuacamoleProperty<Type> property)
Given a GuacamoleProperty, parses and returns the value set for that property in guacamole.properties, if any.<Type> Type
Environment. getProperty(GuacamoleProperty<Type> property, Type defaultValue)
Given a GuacamoleProperty, parses and returns the value set for that property in guacamole.properties, if any.<Type> Type
LocalEnvironment. getProperty(GuacamoleProperty<Type> property)
<Type> Type
LocalEnvironment. getProperty(GuacamoleProperty<Type> property, Type defaultValue)
<Type> Type
DelegatingEnvironment. getRequiredProperty(GuacamoleProperty<Type> property)
<Type> Type
Environment. getRequiredProperty(GuacamoleProperty<Type> property)
Given a GuacamoleProperty, parses and returns the value set for that property in guacamole.properties.<Type> Type
LocalEnvironment. getRequiredProperty(GuacamoleProperty<Type> property)
-
Uses of GuacamoleProperty in org.apache.guacamole.properties
Classes in org.apache.guacamole.properties that implement GuacamoleProperty Modifier and Type Class Description class
BooleanGuacamoleProperty
A GuacamoleProperty whose value is an boolean.class
ByteArrayProperty
A GuacamoleProperty whose value is a byte array.class
EnumGuacamoleProperty<T extends Enum<T>>
A GuacamoleProperty whose possible values are defined by an enum.class
FileGuacamoleProperty
A GuacamoleProperty whose value is a filename.class
IntegerGuacamoleProperty
A GuacamoleProperty whose value is an integer.class
LongGuacamoleProperty
A GuacamoleProperty whose value is an long.class
StringGuacamoleProperty
A GuacamoleProperty whose value is a simple string.class
StringListProperty
A GuacamoleProperty whose value is a List of Strings.class
TimeZoneGuacamoleProperty
A GuacamoleProperty whose value is a TimeZone.class
URIGuacamoleProperty
A GuacamoleProperty whose value is a URI.
-