diff --git a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java index 3d9ea64bf..f0988a741 100644 --- a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java +++ b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java @@ -233,8 +233,8 @@ public class ConfigurationService { /** * Returns whether or not LDAP aliases will be dereferenced, - * as configured with guacamole.properties. The default - * behavior if not explicitly defined is to never + * as configured with guacamole.properties. The default + * behavior if not explicitly defined is to never * dereference them. * * @return @@ -249,7 +249,6 @@ public class ConfigurationService { LDAPGuacamoleProperties.LDAP_DEREFERENCE_ALIASES, DereferenceAliasesMode.NEVER ); - } /** diff --git a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesMode.java b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesMode.java index 406c2478c..1fd1bea41 100644 --- a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesMode.java +++ b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesMode.java @@ -28,20 +28,20 @@ import com.novell.ldap.LDAPSearchConstraints; public enum DereferenceAliasesMode { /** - * Never dereference aliases. This is the default. + * Never dereference aliases. This is the default. */ NEVER(LDAPSearchConstraints.DEREF_NEVER), /** * Aliases are dereferenced below the base object, but not to locate - * the base object itself. So, if the base object is itself an alias + * the base object itself. So, if the base object is itself an alias * the search will not complete. */ SEARCHING(LDAPSearchConstraints.DEREF_SEARCHING), /** * Aliases are only dereferenced to locate the base object, but not - * after that. So, a search against a base object that is an alias will + * after that. So, a search against a base object that is an alias will * find any subordinates of the real object the alias references, but * further aliases in the search will not be dereferenced. */ diff --git a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesProperty.java b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesProperty.java index 7888347b1..60b89c4b6 100644 --- a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesProperty.java +++ b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesProperty.java @@ -26,7 +26,7 @@ import org.apache.guacamole.properties.GuacamoleProperty; /** * A GuacamoleProperty with a value of DereferenceAliases. The possible strings * "never", "searching", "finding", and "always" are mapped to their values as a - * DereferenceAliases enum. Anything else results in a parse error. + * DereferenceAliases enum. Anything else results in a parse error. */ public abstract class DereferenceAliasesProperty implements GuacamoleProperty {