mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

dugan
18.09.2007 be2e85f8ea06a1910744da2f9ccd4137cb2f60c3
opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/BindRule.java
@@ -486,7 +486,7 @@
                                          EnumBindRuleKeyword keyword,
                                          EnumBindRuleType op)
            throws AciException  {
        KeywordBindRule rule;
        KeywordBindRule rule=null;
        switch (keyword) {
            case USERDN:
            {
@@ -495,8 +495,11 @@
            }
            case ROLEDN:
            {
                rule = RoleDN.decode(expr, op);
                break;
                //The roledn keyword is not supported. Throw an exception with
                //a message if it is seen in the ACI.
                int msgID=MSGID_ACI_SYNTAX_ROLEDN_NOT_SUPPORTED;
                String message = getMessage(msgID, expr);
                throw new AciException(msgID, message);
            }
            case GROUPDN:
            {