protected String getUsernameFromAttributes(Attributes directoryAttributes)
      throws NamingException {
    String username =
        DirectoryAttributeRetriever.getValueFromAttributes(
            ldapPropertiesMapper.getUserNameAttribute(), directoryAttributes);

    if (username == null) {
      logger.fatal(
          "The following record does not have a username: "******"Unable to find the username of the principal.");
    }

    return username;
  }
  /**
   * Creates an LDAP {@link Attributes} object containing the information in the {@link User}
   * object.
   *
   * @param user The object to take the values from
   * @return A populated directory-specific Attributes object.
   */
  public Attributes mapAttributesFromUser(User user) throws NamingException {
    if (user == null) {
      throw new UncategorizedLdapException("Cannot map attributes from a null User");
    }

    // pre-populate user names (first name, last name, display name may need to be constructed)
    User populatedUser = UserUtils.populateNames(user);

    Attributes directoryAttributes = new BasicAttributes(true);

    directoryAttributes.put(
        new BasicAttribute(
            ldapPropertiesMapper.getObjectClassAttribute(),
            ldapPropertiesMapper.getUserObjectClass()));

    // username
    putValueInAttributes(
        populatedUser.getName(), ldapPropertiesMapper.getUserNameAttribute(), directoryAttributes);

    // email address
    putValueInAttributes(
        populatedUser.getEmailAddress(),
        ldapPropertiesMapper.getUserEmailAttribute(),
        directoryAttributes);

    // first (given) name
    putValueInAttributes(
        populatedUser.getFirstName(),
        ldapPropertiesMapper.getUserFirstNameAttribute(),
        directoryAttributes);

    // surname
    putValueInAttributes(
        populatedUser.getLastName(),
        ldapPropertiesMapper.getUserLastNameAttribute(),
        directoryAttributes);

    // full name
    putValueInAttributes(
        populatedUser.getDisplayName(),
        ldapPropertiesMapper.getUserDisplayNameAttribute(),
        directoryAttributes);

    // TODO: currently we don't support arbitrary attributes / iconLocation / active

    return directoryAttributes;
  }
 protected String getUserEmailFromAttribute(final Attributes directoryAttributes) {
   return DirectoryAttributeRetriever.getValueFromAttributes(
       ldapPropertiesMapper.getUserEmailAttribute(), directoryAttributes);
 }