Fix for OPENDJ-2959: Control panel Manage Entries window is broken.
The marker to indicate the userPassword confirmation field results in a non standard compliant attribute name. Simple fix is to make sure the marker is compliant (no space).
| | |
| | | private final Map<String, String> hmDisplayedNames = new HashMap<>(); |
| | | private final Map<String, JComponent> hmComponents = new HashMap<>(); |
| | | |
| | | private final String CONFIRM_PASSWORD = "confirm password"; |
| | | private final String CONFIRM_PASSWORD = "opendj-confirm-password"; |
| | | |
| | | /** Map containing as key the attribute name and as value a localizable message. */ |
| | | private final static Map<String, LocalizableMessage> hmFriendlyAttrNames = new HashMap<>(); |