GUACAMOLE-102: Clearer comments on the function for the config values for dereferencing aliases.

This commit is contained in:
Nick Couchman
2017-03-19 20:50:30 -04:00
parent c0a1b692d1
commit b9271aac56

View File

@@ -225,12 +225,15 @@ public class ConfigurationService {
/** /**
* Returns whether or not LDAP aliases will be dereferenced, * Returns whether or not LDAP aliases will be dereferenced,
* as configured with guacamole.properties. * as configured with guacamole.properties. The default
* By default they will never be dereferenced. * behavior if not explicityly defined is to never
* dereference them.
* *
* @return * @return
* An integer representing the status of of alias * An integer value that maps to the JLDAP constants
* dereferencing, as configured in guacamole.properties. * for dereferencing - 0 is DEREF_NEVER, 1 is DEREF_SEARCHING,
* 2 is DEREF_FINDING, and 3 is DEREF_ALWAYS - as configured
* in guacamole.properties.
* *
* @throws GuacamoleException * @throws GuacamoleException
* If guacamole.properties cannot be parsed. * If guacamole.properties cannot be parsed.