Fix a problem in the subject attribute to user attribute certificate mapper in
which a local variable was mistakenly used instead of the instance variable,
causing a null pointer exception when the class variable was used without
being properly initialized.
OpenDS Issue Number: 1469
| | |
| | | configEntryDN = configuration.dn(); |
| | | |
| | | // Get and validate the subject attribute to user attribute mappings. |
| | | LinkedHashMap<String,AttributeType> attributeMap = |
| | | new LinkedHashMap<String,AttributeType>(); |
| | | attributeMap = new LinkedHashMap<String,AttributeType>(); |
| | | for (String mapStr : configuration.getSubjectAttributeMapping()) |
| | | { |
| | | String lowerMap = toLowerCase(mapStr); |