addressLineThree.setKeyName("zip");
addressLineThree.setKeyValue("zip");
addressLineThree.setValue(data.getZip(5));
//One address for the contact. Can be more but only one here.
Address address = new Address();
address.setLang("en");
address.setSortCode("1");
address.setTModelKey("uddi:tmodelKey:address");
address.setUseType("HQ");
address.getAddressLine().add(addressLineOne);
address.getAddressLine().add(addressLineTwo);
address.getAddressLine().add(addressLineThree);
//Contacts phone number details
Phone phone = new Phone();
phone.setUseType("Hotline");
phone.setValue(data.getUSPhoneNumber());