public String getFullName() returns a string representing
      the full name of the person.
    Parameters
None
Returns
Returns a String representing the full name of the person.
Example
    PersonService ps = session.getServiceRegistry().getPersonService();
    
    Person p = ps.getPerson("joeuser");
    
    Log.d(TAG, "avatarIdentifier: " + p.getAvatarIdentifier());
    Log.d(TAG, "firstName: " + p.getFirstName());
    Log.d(TAG, "fullName: " + p.getFullName());
    Log.d(TAG, "identifier: " + p.getIdentifier());
    Log.d(TAG, "lastName: " + p.getLastName());
      
      
      Would produce output such as the following: