properties.add(new PersonPropertyImpl("1", "profileSong", LINK_VALUE, LINK_TEXT, null, false));
properties.add(new PersonPropertyImpl("1", "lookingFor", LookingFor.FRIENDS.toString(), null, null, false));
properties.add(new PersonPropertyImpl("1", "currentLocation", QUALIFIER, null, null, null));
properties.add(new PersonPropertyImpl("1", "account", IM_1, "1", IM_PROVIDER_1, false));
person.setProperties(properties);
org.apache.rave.portal.model.Address address = new AddressImpl();
address.setCountry(COUNTRY);
address.setLatitude(LATITUDE);
address.setLongitude(LONGITUDE);
address.setLocality(CITY);
address.setRegion(STATE);
address.setPostalCode(POSTAL_CODE);
address.setStreetAddress(STREET);
address.setQualifier(QUALIFIER);
List<org.apache.rave.portal.model.Address> addresses = new ArrayList<org.apache.rave.portal.model.Address>();
addresses.add(new AddressImpl());
addresses.add(address);
person.setAddresses(addresses);
return person;
}