/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License, Version 1.0 only * (the "License"). You may not use this file except in compliance * with the License. * * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt * or http://forgerock.org/license/CDDLv1.0.html. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at legal-notices/CDDLv1_0.txt. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: * Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END * * * Copyright 2008-2010 Sun Microsystems, Inc. * Portions Copyright 2011-2015 ForgeRock AS */ package org.opends.guitools.controlpanel.ui; import static org.opends.guitools.controlpanel.util.Utilities.*; import static org.opends.messages.AdminToolMessages.*; import static org.opends.server.types.CommonSchemaElements.*; import static org.opends.server.util.CollectionUtils.*; import java.awt.Component; import java.awt.Container; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.ItemEvent; import java.awt.event.ItemListener; import java.awt.event.KeyAdapter; import java.awt.event.KeyEvent; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.io.File; import java.util.ArrayList; import java.util.Collection; import java.util.Comparator; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.List; import java.util.Map; import java.util.Set; import java.util.SortedSet; import java.util.TreeMap; import java.util.TreeSet; import javax.swing.DefaultComboBoxModel; import javax.swing.DefaultListModel; import javax.swing.JButton; import javax.swing.JCheckBox; import javax.swing.JComboBox; import javax.swing.JLabel; import javax.swing.JList; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTextField; import javax.swing.SwingUtilities; import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; import javax.swing.event.DocumentEvent; import javax.swing.event.DocumentListener; import org.forgerock.i18n.LocalizableMessage; import org.forgerock.i18n.LocalizableMessageBuilder; import org.forgerock.opendj.ldap.schema.AttributeUsage; import org.forgerock.opendj.ldap.schema.MatchingRule; import org.forgerock.opendj.ldap.schema.Syntax; import org.opends.guitools.controlpanel.datamodel.ServerDescriptor; import org.opends.guitools.controlpanel.event.ConfigurationChangeEvent; import org.opends.guitools.controlpanel.event.ConfigurationElementCreatedListener; import org.opends.guitools.controlpanel.event.ScrollPaneBorderListener; import org.opends.guitools.controlpanel.task.DeleteSchemaElementsTask; import org.opends.guitools.controlpanel.task.ModifyAttributeTask; import org.opends.guitools.controlpanel.task.Task; import org.opends.guitools.controlpanel.ui.UnsavedChangesDialog.Result; import org.opends.guitools.controlpanel.ui.components.BasicExpander; import org.opends.guitools.controlpanel.ui.components.TitlePanel; import org.opends.guitools.controlpanel.ui.renderer.SchemaElementComboBoxCellRenderer; import org.opends.guitools.controlpanel.util.LowerCaseComparator; import org.opends.guitools.controlpanel.util.Utilities; import org.opends.server.types.AttributeType; import org.opends.server.types.ObjectClass; import org.opends.server.types.Schema; import org.opends.server.util.ServerConstants; import org.opends.server.util.StaticUtils; /** The panel that displays a custom attribute definition. */ class CustomAttributePanel extends SchemaElementPanel { private static final long serialVersionUID = 2850763193735843746L; private JButton delete; private JButton saveChanges; private AttributeType attribute; private String attrName; private ScrollPaneBorderListener scrollListener; private final TitlePanel titlePanel = new TitlePanel(LocalizableMessage.EMPTY, LocalizableMessage.EMPTY); private final JLabel lName = createPrimaryLabel(INFO_CTRL_PANEL_ATTRIBUTE_NAME_LABEL.get()); private final JLabel lSuperior = createPrimaryLabel(INFO_CTRL_PANEL_ATTRIBUTE_PARENT_LABEL.get()); private final JLabel lOID = createPrimaryLabel(INFO_CTRL_PANEL_ATTRIBUTE_OID_LABEL.get()); private final JLabel lAliases = createPrimaryLabel(INFO_CTRL_PANEL_ATTRIBUTE_ALIASES_LABEL.get()); private final JLabel lOrigin = createPrimaryLabel(INFO_CTRL_PANEL_ATTRIBUTE_ORIGIN_LABEL.get()); private final JLabel lFile = createPrimaryLabel(INFO_CTRL_PANEL_ATTRIBUTE_FILE_LABEL.get()); private final JLabel lDescription = createPrimaryLabel(INFO_CTRL_PANEL_ATTRIBUTE_DESCRIPTION_LABEL.get()); private final JLabel lUsage = createPrimaryLabel(INFO_CTRL_PANEL_ATTRIBUTE_USAGE_LABEL.get()); private final JLabel lSyntax = createPrimaryLabel(INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_LABEL.get()); private final JLabel lApproximate = createPrimaryLabel( INFO_CTRL_PANEL_ATTRIBUTE_APPROXIMATE_MATCHING_RULE_LABEL.get()); private final JLabel lEquality = createPrimaryLabel(INFO_CTRL_PANEL_ATTRIBUTE_EQUALITY_MATCHING_RULE_LABEL.get()); private final JLabel lOrdering = createPrimaryLabel(INFO_CTRL_PANEL_ATTRIBUTE_ORDERING_MATCHING_RULE_LABEL.get()); private final JLabel lSubstring = createPrimaryLabel(INFO_CTRL_PANEL_ATTRIBUTE_SUBSTRING_MATCHING_RULE_LABEL.get()); private final JLabel lType = createPrimaryLabel(); private final JLabel[] labels = { lName, lSuperior, lOID, lAliases, lOrigin, lFile, lDescription, lUsage, lSyntax, lApproximate, lEquality, lOrdering, lSubstring, lType }; private final JTextField name = createMediumTextField(); private final JComboBox parent = createComboBox(); private final JTextField oid = createMediumTextField(); private final JTextField aliases = createLongTextField(); private final JTextField description = createLongTextField(); private final JTextField origin = createLongTextField(); private final JTextField file = createLongTextField(); private final JComboBox usage = createComboBox(); private final JComboBox syntax = createComboBox(); private final JComboBox approximate = createComboBox(); private final JComboBox equality = createComboBox(); private final JComboBox ordering = createComboBox(); private final JComboBox substring = createComboBox(); private final JCheckBox nonModifiable = createCheckBox(INFO_CTRL_PANEL_ATTRIBUTE_NON_MODIFIABLE_LABEL.get()); private final JCheckBox singleValued = createCheckBox(INFO_CTRL_PANEL_ATTRIBUTE_SINGLE_VALUED_LABEL.get()); private final JCheckBox collective = createCheckBox(INFO_CTRL_PANEL_ATTRIBUTE_COLLECTIVE_LABEL.get()); private final JCheckBox obsolete = createCheckBox(INFO_CTRL_PANEL_ATTRIBUTE_OBSOLETE_LABEL.get()); private final JList requiredBy = new JList(new DefaultListModel()); private final JList optionalBy = new JList(new DefaultListModel()); private final Set lastAliases = new LinkedHashSet<>(); private final LocalizableMessage NO_PARENT = INFO_CTRL_PANEL_NO_PARENT_FOR_ATTRIBUTE.get(); private final LocalizableMessage NO_MATCHING_RULE = INFO_CTRL_PANEL_NO_MATCHING_RULE_FOR_ATTRIBUTE.get(); private Schema schema; private boolean ignoreChangeEvents; /** Default constructor of the panel. */ public CustomAttributePanel() { createLayout(); } /** {@inheritDoc} */ @Override public LocalizableMessage getTitle() { return INFO_CTRL_PANEL_CUSTOM_ATTRIBUTE_TITLE.get(); } /** * Creates the layout of the panel (but the contents are not populated here). */ private void createLayout() { GridBagConstraints gbc = new GridBagConstraints(); JPanel p = new JPanel(new GridBagLayout()); p.setOpaque(false); p.setBorder(PANEL_BORDER); createBasicLayout(p, gbc); gbc = new GridBagConstraints(); gbc.weightx = 1.0; gbc.weighty = 1.0; gbc.gridwidth = 2; gbc.fill = GridBagConstraints.BOTH; gbc.gridx = 0; gbc.gridy = 0; JScrollPane scroll = Utilities.createBorderLessScrollBar(p); scrollListener = ScrollPaneBorderListener.createBottomBorderListener(scroll); add(scroll, gbc); gbc.gridy ++; gbc.weighty = 0.0; gbc.anchor = GridBagConstraints.WEST; gbc.fill = GridBagConstraints.NONE; gbc.insets = new Insets(10, 10, 10, 10); gbc.gridwidth = 1; delete = Utilities.createButton( INFO_CTRL_PANEL_DELETE_ATTRIBUTE_BUTTON.get()); delete.setOpaque(false); add(delete, gbc); delete.addActionListener(new ActionListener() { /** {@inheritDoc} */ @Override public void actionPerformed(ActionEvent ev) { deleteAttribute(); } }); gbc.anchor = GridBagConstraints.EAST; gbc.gridx ++; saveChanges = Utilities.createButton(INFO_CTRL_PANEL_SAVE_CHANGES_LABEL.get()); saveChanges.setOpaque(false); add(saveChanges, gbc); saveChanges.addActionListener(new ActionListener() { /** {@inheritDoc} */ @Override public void actionPerformed(ActionEvent ev) { saveChanges(); } }); } /** * Creates the basic layout of the panel. * @param c the container where all the components will be laid out. * @param gbc the grid bag constraints. */ private void createBasicLayout(Container c, GridBagConstraints gbc) { requiredBy.setVisibleRowCount(5); optionalBy.setVisibleRowCount(9); gbc.gridy = 0; gbc.gridwidth = 2; addErrorPane(c, gbc); gbc.gridy ++; gbc.anchor = GridBagConstraints.WEST; titlePanel.setTitle(INFO_CTRL_PANEL_ATTRIBUTE_DETAILS.get()); gbc.fill = GridBagConstraints.NONE; gbc.insets.top = 5; gbc.insets.bottom = 7; c.add(titlePanel, gbc); gbc.insets.bottom = 0; gbc.insets.top = 8; gbc.gridy ++; gbc.gridwidth = 1; gbc.fill = GridBagConstraints.HORIZONTAL; JComboBox[] comboBoxes = {parent, syntax, approximate, equality, ordering, substring}; LocalizableMessage[] defaultValues = {NO_PARENT, LocalizableMessage.EMPTY, NO_MATCHING_RULE, NO_MATCHING_RULE, NO_MATCHING_RULE, NO_MATCHING_RULE }; SchemaElementComboBoxCellRenderer renderer = new SchemaElementComboBoxCellRenderer(syntax); for (int i=0; i someAliases = getAliases(attr); lastAliases.clear(); lastAliases.addAll(someAliases); this.aliases.setText(Utilities.getStringFromCollection(someAliases, ", ")); String sOrigin = Utilities.getOrigin(attr); if (sOrigin == null) { sOrigin = ""; } origin.setText(sOrigin); String sFile = getSchemaFile(attr); if (sFile == null) { sFile = ""; } file.setText(sFile); usage.setSelectedItem(attr.getUsage()); singleValued.setSelected(attr.isSingleValue()); nonModifiable.setSelected(attr.isNoUserModification()); collective.setSelected(attr.isCollective()); obsolete.setSelected(attr.isObsolete()); JComboBox[] matchingRules = {approximate, equality, ordering, substring}; MatchingRule[] rules = {attr.getApproximateMatchingRule(), attr.getEqualityMatchingRule(), attr.getOrderingMatchingRule(), attr.getSubstringMatchingRule() }; for (int i=0; i lowerCaseComparator = new LowerCaseComparator(); SortedSet requiredByOcs = new TreeSet<>(lowerCaseComparator); for (ObjectClass oc : schema.getObjectClasses().values()) { if (oc.getRequiredAttributeChain().contains(attr)) { requiredByOcs.add(oc.getNameOrOID()); } } DefaultListModel model = (DefaultListModel)requiredBy.getModel(); model.clear(); for (String oc : requiredByOcs) { model.addElement(oc); } SortedSet optionalByOcs = new TreeSet<>(lowerCaseComparator); for (ObjectClass oc : schema.getObjectClasses().values()) { if (oc.getOptionalAttributeChain().contains(attr)) { optionalByOcs.add(oc.getNameOrOID()); } } model = (DefaultListModel)optionalBy.getModel(); model.clear(); for (String oc : optionalByOcs) { model.addElement(oc); } attribute = attr; attrName = attr.getNameOrOID(); scrollListener.updateBorder(); for (JLabel label : labels) { setPrimaryValid(label); } saveChanges.setEnabled(false); ignoreChangeEvents = false; } /** {@inheritDoc} */ @Override public void configurationChanged(ConfigurationChangeEvent ev) { final ServerDescriptor desc = ev.getNewDescriptor(); Schema s = desc.getSchema(); if (hasSchemaChanged(s)) { schema = s; LowerCaseComparator lowerCase = new LowerCaseComparator(); Map syntaxNameMap = new TreeMap<>(lowerCase); for (String key : schema.getSyntaxes().keySet()) { Syntax syntax = schema.getSyntax(key); String name = syntax.getName(); if (name == null) { name = syntax.getOID(); } syntaxNameMap.put(name, syntax); } List newSyntaxes = new ArrayList<>(syntaxNameMap.values()); updateComboBoxModel(newSyntaxes, (DefaultComboBoxModel) syntax.getModel()); Map attributeNameMap = new TreeMap<>(lowerCase); for (String key : schema.getAttributeTypes().keySet()) { AttributeType attr = schema.getAttributeType(key); attributeNameMap.put(attr.getNameOrOID(), attr); } List newParents = new ArrayList<>(); newParents.addAll(attributeNameMap.values()); newParents.add(0, NO_PARENT); updateComboBoxModel(newParents, (DefaultComboBoxModel) parent.getModel()); final Map matchingRuleNameMap = new TreeMap<>(lowerCase); for (String key : schema.getMatchingRules().keySet()) { MatchingRule rule = schema.getMatchingRule(key); matchingRuleNameMap.put(rule.getNameOrOID(), rule); } final List availableMatchingRules = new ArrayList<>(matchingRuleNameMap.values()); JComboBox[] combos = {approximate, equality, ordering, substring}; for (JComboBox combo : combos) { final DefaultComboBoxModel model = (DefaultComboBoxModel) combo.getModel(); final List el = new ArrayList(availableMatchingRules); el.add(0, model.getSize() != 0 ? model.getElementAt(0) : NO_MATCHING_RULE); updateComboBoxModel(el, model); } } else if (schema == null) { updateErrorPane(errorPane, ERR_CTRL_PANEL_SCHEMA_NOT_FOUND_SUMMARY.get(), ColorAndFontConstants.errorTitleFont, ERR_CTRL_PANEL_SCHEMA_NOT_FOUND_DETAILS.get(), ColorAndFontConstants.defaultFont); } if (schema != null) { updateErrorPaneIfAuthRequired(desc, isLocal() ? INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_ATTRIBUTE_DELETE.get() : INFO_CTRL_PANEL_CANNOT_CONNECT_TO_REMOTE_DETAILS.get(desc.getHostname())); } SwingUtilities.invokeLater(new Runnable() { /** {@inheritDoc} */ @Override public void run() { delete.setEnabled(!authenticationRequired(desc) && delete.isEnabled() && schema != null); checkEnableSaveChanges(); saveChanges.setEnabled(saveChanges.isEnabled() && !authenticationRequired(desc) && schema != null); } }); } private boolean hasSchemaChanged(Schema s) { if (schema != null && s != null) { return !ServerDescriptor.areSchemasEqual(s, schema); } return schema == null && s != null; } /** {@inheritDoc} */ @Override public Component getPreferredFocusComponent() { return name; } /** {@inheritDoc} */ @Override public void okClicked() { } private void deleteAttribute() { ArrayList errors = new ArrayList<>(); Schema schema = getInfo().getServerDescriptor().getSchema(); ProgressDialog dlg = new ProgressDialog( Utilities.createFrame(), Utilities.getParentDialog(this), INFO_CTRL_PANEL_DELETE_ATTRIBUTE_TITLE.get(), getInfo()); LinkedHashSet attrsToDelete = new LinkedHashSet<>(1); attrsToDelete.add(attribute); Task newTask = new DeleteSchemaElementsTask(getInfo(), dlg, new LinkedHashSet(0), attrsToDelete); for (Task task : getInfo().getTasks()) { task.canLaunch(newTask, errors); } TreeSet childAttributes = new TreeSet<>(); TreeSet dependentClasses = new TreeSet<>(); if (schema != null) { for (AttributeType attr : schema.getAttributeTypes().values()) { if (attribute.equals(attr.getSuperiorType())) { childAttributes.add(attr.getNameOrOID()); } } for (ObjectClass o : schema.getObjectClasses().values()) { if (o.getRequiredAttributeChain().contains(attribute)) { dependentClasses.add(o.getNameOrOID()); } else if (o.getOptionalAttributeChain().contains(attribute)) { dependentClasses.add(o.getNameOrOID()); } } } else { errors.add(ERR_CTRL_PANEL_SCHEMA_NOT_FOUND_DETAILS.get()); } if (errors.isEmpty()) { LocalizableMessageBuilder mb = new LocalizableMessageBuilder(); if (!childAttributes.isEmpty()) { mb.append(INFO_ATTRIBUTE_IS_SUPERIOR.get(attrName, Utilities.getStringFromCollection(childAttributes, ", "))); mb.append("
"); } if (!dependentClasses.isEmpty()) { mb.append(INFO_ATTRIBUTE_WITH_DEPENDENCIES.get( attrName, Utilities.getStringFromCollection(dependentClasses, ", "))); mb.append("
"); } LocalizableMessage confirmationMessage = INFO_CTRL_PANEL_CONFIRMATION_DELETE_ATTRIBUTE_DETAILS.get( attribute.getNameOrOID()); mb.append(confirmationMessage); if (displayConfirmationDialog( INFO_CTRL_PANEL_CONFIRMATION_REQUIRED_SUMMARY.get(), mb.toMessage())) { launchOperation(newTask, INFO_CTRL_PANEL_DELETING_ATTRIBUTE_SUMMARY.get(attrName), INFO_CTRL_PANEL_DELETING_ATTRIBUTE_COMPLETE.get(), INFO_CTRL_PANEL_DELETING_ATTRIBUTE_SUCCESSFUL.get(attrName), ERR_CTRL_PANEL_DELETING_ATTRIBUTE_ERROR_SUMMARY.get(), ERR_CTRL_PANEL_DELETING_ATTRIBUTE_ERROR_DETAILS.get(attrName), null, dlg); dlg.setVisible(true); } } else { displayErrorDialog(errors); } } private boolean saveChanges() { ArrayList errors = new ArrayList<>(); // Check if the aliases or the name have changed for (JLabel label : labels) { setPrimaryValid(label); } String n = getAttributeName(); LocalizableMessageBuilder err = new LocalizableMessageBuilder(); if (n.length() == 0) { errors.add(ERR_CTRL_PANEL_ATTRIBUTE_NAME_REQUIRED.get()); setPrimaryInvalid(lName); } else if (!n.equalsIgnoreCase(attribute.getNameOrOID())) { if (!StaticUtils.isValidSchemaElement(n, 0, n.length(), err)) { errors.add(ERR_CTRL_PANEL_INVALID_ATTRIBUTE_NAME.get(err)); setPrimaryInvalid(lName); err = new LocalizableMessageBuilder(); } else { LocalizableMessage elementType = NewAttributePanel.getSchemaElementType(n, schema); if (elementType != null) { errors.add(ERR_CTRL_PANEL_ATTRIBUTE_NAME_ALREADY_IN_USE.get(n, elementType)); setPrimaryInvalid(lName); } } } n = oid.getText().trim(); if (n.length() > 0 && !n.equalsIgnoreCase(attribute.getOID())) { if (!StaticUtils.isValidSchemaElement(n, 0, n.length(), err)) { errors.add(ERR_CTRL_PANEL_OID_NOT_VALID.get(err)); setPrimaryInvalid(lOID); err = new LocalizableMessageBuilder(); } else { LocalizableMessage elementType = NewAttributePanel.getSchemaElementType(n, schema); if (elementType != null) { errors.add(ERR_CTRL_PANEL_OID_ALREADY_IN_USE.get(n, elementType)); setPrimaryInvalid(lOID); } } } Collection someAliases = getAliases(); Collection oldAliases = getAliases(attribute); if (!someAliases.equals(oldAliases)) { for (String alias : someAliases) { if (alias.trim().length() == 0) { errors.add(ERR_CTRL_PANEL_EMPTY_ALIAS.get()); setPrimaryInvalid(lAliases); } else if (notPreviouslyDefined(oldAliases, alias)) { LocalizableMessage elementType = NewAttributePanel.getSchemaElementType(alias, schema); if (elementType != null) { errors.add(ERR_CTRL_PANEL_ALIAS_ALREADY_IN_USE.get(n, elementType)); setPrimaryInvalid(lAliases); } } } } AttributeType superior = getSuperior(); if (superior != null) { if (superior.getNameOrOID().equalsIgnoreCase(attribute.getNameOrOID())) { errors.add(ERR_CTRL_PANEL_ATTRIBUTE_CANNOT_BE_ITS_SUPERIOR.get()); setPrimaryInvalid(lSuperior); } else { // Check whether this object class is defined as parent as the superior. superior = superior.getSuperiorType(); while (superior != null) { if (superior.getNameOrOID().equalsIgnoreCase( attribute.getNameOrOID())) { errors.add( ERR_CTRL_PANEL_ATTRIBUTE_IS_SUPERIOR_OF_SUPERIOR.get( getSuperior().getNameOrOID())); setPrimaryInvalid(lSuperior); break; } superior = superior.getSuperiorType(); } } } setPrimaryValid(lUsage); if (nonModifiable.isSelected() && AttributeUsage.USER_APPLICATIONS.equals(usage.getSelectedItem())) { errors.add(ERR_NON_MODIFIABLE_CANNOT_BE_USER_APPLICATIONS.get()); setPrimaryInvalid(lUsage); } if (errors.isEmpty()) { ProgressDialog dlg = new ProgressDialog( Utilities.createFrame(), Utilities.getParentDialog(this), INFO_CTRL_PANEL_MODIFY_ATTRIBUTE_TITLE.get(), getInfo()); ModifyAttributeTask newTask = new ModifyAttributeTask(getInfo(), dlg, attribute, getNewAttribute()); for (ConfigurationElementCreatedListener listener : getConfigurationElementCreatedListeners()) { newTask.addConfigurationElementCreatedListener(listener); } for (Task task : getInfo().getTasks()) { task.canLaunch(newTask, errors); } if (errors.isEmpty()) { launchOperation(newTask, INFO_CTRL_PANEL_MODIFYING_ATTRIBUTE_SUMMARY.get(attrName), INFO_CTRL_PANEL_MODIFYING_ATTRIBUTE_COMPLETE.get(), INFO_CTRL_PANEL_MODIFYING_ATTRIBUTE_SUCCESSFUL.get(attrName), ERR_CTRL_PANEL_MODIFYING_ATTRIBUTE_ERROR_SUMMARY.get(), ERR_CTRL_PANEL_MODIFYING_ATTRIBUTE_ERROR_DETAILS.get(attrName), null, dlg); dlg.setVisible(true); } } if (!errors.isEmpty()) { displayErrorDialog(errors); } return errors.isEmpty(); } private boolean notPreviouslyDefined(Collection oldAliases, String alias) { for (String oldAlias : oldAliases) { if (oldAlias.equalsIgnoreCase(alias)) { return false; } } return true; } private void checkEnableSaveChanges() { if (!ignoreChangeEvents) { saveChanges.setEnabled(hasChanged()); } } private boolean hasChanged() { if (attribute != null) { try { return !attribute.toString().equals(getNewAttribute().toString()); } catch (Throwable t) { return true; } } return false; } private String getAttributeName() { return name.getText().trim(); } private String getOID() { String o = oid.getText().trim(); if (o.length() == 0) { return getAttributeName() + "-oid"; } return o; } private ArrayList getAliases() { ArrayList al = new ArrayList<>(); String s = aliases.getText().trim(); if (s.length() > 0) { String[] a = s.split(","); for (String alias : a) { al.add(alias.trim()); } } return al; } private ArrayList getAllNames() { ArrayList al = new ArrayList<>(); al.add(getAttributeName()); al.addAll(getAliases()); return al; } private AttributeType getSuperior() { Object o = parent.getSelectedItem(); if (NO_PARENT.equals(o)) { return null; } else { return (AttributeType)o; } } private MatchingRule getMatchingRule(JComboBox comboBox) { if (comboBox.getSelectedIndex() != 0) { return (MatchingRule) comboBox.getSelectedItem(); } return null; } private Map> getExtraProperties() { Map> map = new HashMap<>(); String f = file.getText().trim(); if (f.length() > 0) { map.put(ServerConstants.SCHEMA_PROPERTY_FILENAME, newArrayList(f)); } String or = origin.getText().trim(); if (or.length() > 0) { map.put(ServerConstants.SCHEMA_PROPERTY_ORIGIN, newArrayList(or)); } return map; } private String getDescription() { return description.getText().trim(); } private AttributeType getNewAttribute() { return new AttributeType("", getAttributeName(), getAllNames(), getOID(), getDescription(), getSuperior(), (Syntax)syntax.getSelectedItem(), getMatchingRule(approximate), getMatchingRule(equality), getMatchingRule(ordering), getMatchingRule(substring), (AttributeUsage)usage.getSelectedItem(), collective.isSelected(), nonModifiable.isSelected(), obsolete.isSelected(), singleValued.isSelected(), getExtraProperties()); } private void updateDefaultMatchingRuleNames() { Syntax syn = (Syntax)syntax.getSelectedItem(); if (syn != null) { MatchingRule[] rules = {syn.getApproximateMatchingRule(), syn.getSubstringMatchingRule(), syn.getEqualityMatchingRule(), syn.getOrderingMatchingRule()}; JComboBox[] combos = {approximate, substring, equality, ordering}; for (int i=0; i 0) { model.removeElementAt(0); } if (rules[i] != null) { model.insertElementAt(INFO_CTRL_PANEL_DEFAULT_DEFINED_IN_SYNTAX.get( rules[i].getNameOrOID()), 0); } else { model.insertElementAt(NO_MATCHING_RULE, 0); } combos[i].setSelectedIndex(index); } } } }