| | |
| | | * |
| | | * |
| | | * Copyright 2008-2010 Sun Microsystems, Inc. |
| | | * Portions Copyright 2014-2015 ForgeRock AS |
| | | * Portions Copyright 2014-2016 ForgeRock AS |
| | | */ |
| | | |
| | | package org.opends.guitools.controlpanel.ui; |
| | |
| | | import org.opends.guitools.controlpanel.ui.renderer.SchemaElementComboBoxCellRenderer; |
| | | import org.opends.guitools.controlpanel.util.Utilities; |
| | | import org.opends.server.config.ConfigConstants; |
| | | import org.opends.server.types.AttributeType; |
| | | import org.forgerock.opendj.ldap.schema.AttributeType; |
| | | import org.opends.server.types.ObjectClass; |
| | | import org.opends.server.types.Schema; |
| | | import org.opends.server.util.ServerConstants; |
| | |
| | | attributes.getSelectedList2() |
| | | }; |
| | | attributes.getAvailableListModel().clear(); |
| | | Collection<AttributeType> allAttrs = |
| | | schema.getAttributeTypes().values(); |
| | | Collection<AttributeType> allAttrs = schema.getAttributeTypes(); |
| | | attributes.getAvailableListModel().addAll(allAttrs); |
| | | |
| | | |