String postalCode = infos.get(getPostalUserInfoKey(PostalInfo.POSTALCODE, isBusiness));
String country = infos.get(getPostalUserInfoKey(PostalInfo.COUNTRY, isBusiness));
String organization = infos.get(getPostalUserInfoKey(PostalInfo.ORGANIZATION, isBusiness));
Postal postal = WSRPTypeFactory.createPostal(name, street, city, stateprov, postalCode, country, organization);
TelephoneNum telephone = createTelephoneNumFrom(infos, TelecomType.TELEPHONE, isBusiness);
TelephoneNum fax = createTelephoneNumFrom(infos, TelecomType.FAX, isBusiness);
TelephoneNum mobile = createTelephoneNumFrom(infos, TelecomType.MOBILE, isBusiness);
TelephoneNum pager = createTelephoneNumFrom(infos, TelecomType.PAGER, isBusiness);
Telecom telecom = WSRPTypeFactory.createTelecom(telephone, fax, mobile, pager);
Contact contact = WSRPTypeFactory.createContact(postal, telecom, online);
return contact;