Examples of Ava


Examples of org.apache.directory.shared.ldap.name.AVA

        String fileName = "";

        Iterator<AVA> iterator = rdn.iterator();
        while ( iterator.hasNext() )
        {
            AVA ava = iterator.next();

            // First, get the AT name, or OID
            String normAT = ava.getNormType();
            AttributeType at = schemaManager.lookupAttributeTypeRegistry( normAT );

            String atName = at.getName();

            // Now, get the normalized value
            String normValue = ava.getNormValue().getString();

            fileName += atName + "=" + normValue;

            if ( iterator.hasNext() )
            {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.