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> TypeDelegatingEnvironment. getProperty(GuacamoleProperty<Type> property)<Type> TypeDelegatingEnvironment. getProperty(GuacamoleProperty<Type> property, Type defaultValue)<Type> TypeEnvironment. getProperty(GuacamoleProperty<Type> property)Given a GuacamoleProperty, parses and returns the value set for that property in guacamole.properties, if any.<Type> TypeEnvironment. getProperty(GuacamoleProperty<Type> property, Type defaultValue)Given a GuacamoleProperty, parses and returns the value set for that property in guacamole.properties, if any.<Type> TypeLocalEnvironment. getProperty(GuacamoleProperty<Type> property)<Type> TypeLocalEnvironment. getProperty(GuacamoleProperty<Type> property, Type defaultValue)<Type> TypeDelegatingEnvironment. getRequiredProperty(GuacamoleProperty<Type> property)<Type> TypeEnvironment. getRequiredProperty(GuacamoleProperty<Type> property)Given a GuacamoleProperty, parses and returns the value set for that property in guacamole.properties.<Type> TypeLocalEnvironment. 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 classBooleanGuacamolePropertyA GuacamoleProperty whose value is an boolean.classByteArrayPropertyA GuacamoleProperty whose value is a byte array.classEnumGuacamoleProperty<T extends Enum<T>>A GuacamoleProperty whose possible values are defined by an enum.classFileGuacamolePropertyA GuacamoleProperty whose value is a filename.classIntegerGuacamolePropertyA GuacamoleProperty whose value is an integer.classLongGuacamolePropertyA GuacamoleProperty whose value is an long.classStringGuacamolePropertyA GuacamoleProperty whose value is a simple string.classStringListPropertyA GuacamoleProperty whose value is a List of Strings.classTimeZoneGuacamolePropertyA GuacamoleProperty whose value is a TimeZone.classURIGuacamolePropertyA GuacamoleProperty whose value is a URI.
-