Long userId = client.users_getLoggedInUser();
assertNotNull( userId );
// Get friends list
client.friends_get();
FriendsGetResponse response = (FriendsGetResponse) client.getResponsePOJO();
List<Long> friends = response.getUid();
// Go fetch the information for the user list of user ids
client.users_getInfo( friends, EnumSet.of( ProfileField.NAME ) );
UsersGetInfoResponse userResponse = (UsersGetInfoResponse) client.getResponsePOJO();