Github user mike-jumper commented on a diff in the pull request:

    
https://github.com/apache/incubator-guacamole-client/pull/202#discussion_r149186459
  
    --- Diff: 
extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/LDAPGuacamoleProperties.java
 ---
    @@ -174,4 +175,34 @@ private LDAPGuacamoleProperties() {}
     
         };
     
    +    /**
    +     * Whether or not we should follow referrals
    +     */
    +    public static final BooleanGuacamoleProperty LDAP_FOLLOW_REFERRALS = 
new BooleanGuacamoleProperty() {
    +
    +        @Override
    +        public String getName() { return "ldap-follow-referrals"; }
    +
    +    };
    +
    +    /**
    +     * Maximum number of referral hops to follow
    +     */
    +    public static final IntegerGuacamoleProperty LDAP_MAX_REFERRAL_HOPS = 
new IntegerGuacamoleProperty() {
    +
    +        @Override
    +        public String getName() { return "ldap-max-referral-hops"; }
    +
    +    };
    +
    +    /**
    +     * Number of seconds to wait for LDAP operations to complete
    --- End diff --
    
    JavaDoc formatting: missing period.


---

Reply via email to