Package org.apache.directory.ldapstudio.apacheds.configuration.dialogs

Examples of org.apache.directory.ldapstudio.apacheds.configuration.dialogs.AttributeValueDialog


            AttributeValueObject attributeValueObject = ( AttributeValueObject ) selection.getFirstElement();

            String oldId = attributeValueObject.getAttribute();
            Object oldValue = attributeValueObject.getValue();

            AttributeValueDialog dialog = new AttributeValueDialog( attributeValueObject );
            if ( Dialog.OK == dialog.open() && dialog.isDirty() )
            {
                Attribute attribute = contextEntry.get( oldId );
                if ( attribute != null )
                {
                    attribute.remove( oldValue );
                }

                AttributeValueObject newAttributeValueObject = dialog.getAttributeValueObject();
                attribute = contextEntry.get( newAttributeValueObject.getAttribute() );
                if ( attribute != null )
                {
                    attribute.add( newAttributeValueObject.getValue() );
                }
View Full Code Here

TOP

Related Classes of org.apache.directory.ldapstudio.apacheds.configuration.dialogs.AttributeValueDialog

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.