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

dugan
01.40.2007 829831b834486aeb3a6b2c4994f6e2d0d9dea7f5
opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/ParentInheritance.java
@@ -69,6 +69,12 @@
     */
    private AttributeType attributeType;
    /*
     * The attribute type string parsed from the rule. Only used in
     * inheritance search.
     */
    private String attrTypeStr;
    /**
     * Construct a class from the inheritance pattern. The skipParsing boolean
@@ -150,6 +156,7 @@
                DirectoryServer.getAttributeType(toks[1])) == null)
                this.attributeType =
                    DirectoryServer.getDefaultAttributeType(toks[1]);
            attrTypeStr=toks[1];
            StringTokenizer tok=new StringTokenizer(toks[0],"],",false);
            while(tok.hasMoreTokens()) {
                String v=tok.nextToken();
@@ -206,5 +213,13 @@
    public AttributeType getAttributeType() {
        return attributeType;
    }
    /**
     * Return the string representation of the attribute type.
     * @return   The attribute type string.
     */
    public String getAttrTypeStr() {
        return attrTypeStr;
    }
}