* @param streetAddress
* @param addressLocation
* @return the address
*/
private static MailingAddress createAddress(VCardAddress vcardAddress, Type addressLocation){
MailingAddress address = new MailingAddressImpl();
address.addType(addressLocation);
address.setCountry(vcardAddress.getCountry() != null ? vcardAddress.getCountry() : "");
address.setRegion(vcardAddress.getRegion() != null ? vcardAddress.getRegion() : "");
address.setLocality(vcardAddress.getCity() != null ? vcardAddress.getCity() : "");
address.setStreetAddress(vcardAddress.getStreet() != null ? vcardAddress.getStreet() : "");
address.setPostalCode(vcardAddress.getCap() != null ? vcardAddress.getCap() : "");
return address;
}