| | |
| | |
|
| | | user.displayName = displayName;
|
| | | } else {
|
| | | user.displayName = userEntry.getAttribute(displayName).getValue();
|
| | | Attribute attribute = userEntry.getAttribute(displayName);
|
| | | if (attribute != null && attribute.hasValue()) {
|
| | | user.displayName = attribute.getValue();
|
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | |
| | |
|
| | | user.emailAddress = email;
|
| | | } else {
|
| | | user.emailAddress = userEntry.getAttribute(email).getValue();
|
| | | Attribute attribute = userEntry.getAttribute(email);
|
| | | if (attribute != null && attribute.hasValue()) {
|
| | | user.emailAddress = attribute.getValue();
|
| | | }
|
| | | }
|
| | | }
|
| | | }
|