Package org.apache.ldap.server.db

Examples of org.apache.ldap.server.db.IndexComparator


         * The forward key/value map stores attribute values to master table
         * primary keys.  A value for an attribute can occur several times in
         * different entries so the forward map can have more than one value.
         */
        forward = new JdbmTable( attribute.getName() + FORWARD_BTREE,
            true, recMan, new IndexComparator( comp, true ) );
       
        /*
         * Now the reverse map stores the primary key into the master table as
         * the key and the values of attributes as the value.  If an attribute
         * is single valued according to its specification based on a schema
         * then duplicate keys should not be allowed within the reverse table.
         */
        reverse = new JdbmTable( attribute.getName() + REVERSE_BTREE,
            ! attribute.isSingleValue(), recMan,
            new IndexComparator( comp, false ) );
    }
View Full Code Here

TOP

Related Classes of org.apache.ldap.server.db.IndexComparator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.