From: Roland Haeder Date: Mon, 12 Oct 2015 11:52:30 +0000 (+0200) Subject: updated jar(s) + fixed method calls X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=94856f630e48c9e6d621e8596fb743175af06fe9;p=pizzaservice-war.git updated jar(s) + fixed method calls Signed-off-by:Roland Häder --- diff --git a/lib/jcontacts-core.jar b/lib/jcontacts-core.jar index b9770441..30e96408 100644 Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ diff --git a/lib/jphone-core.jar b/lib/jphone-core.jar index b8dca2da..6da09db1 100644 Binary files a/lib/jphone-core.jar and b/lib/jphone-core.jar differ diff --git a/src/java/org/mxchange/pizzaapplication/beans/customer/CustomerWebBean.java b/src/java/org/mxchange/pizzaapplication/beans/customer/CustomerWebBean.java index 559d9f18..1774208d 100644 --- a/src/java/org/mxchange/pizzaapplication/beans/customer/CustomerWebBean.java +++ b/src/java/org/mxchange/pizzaapplication/beans/customer/CustomerWebBean.java @@ -151,14 +151,14 @@ public class CustomerWebBean implements CustomerWebController { // Create new contact Contact contact = new UserContact(this.getGender(), this.getFirstName(), this.getFamilyName()); - contact.setStreet(this.getStreet()); - contact.setHouseNumber(this.getHouseNumber()); - contact.setZipCode(this.getZipCode()); - contact.setCity(this.getCity()); - contact.setCountry(this.getCountry()); - contact.setPhoneNumber(this.getPhoneNumber()); - contact.setFaxNumber(this.getFaxNumber()); - contact.setCellphoneNumber(this.getCellphoneNumber()); + contact.setContactStreet(this.getStreet()); + contact.setContactHouseNumber(this.getHouseNumber()); + contact.setContactZipCode(this.getZipCode()); + contact.setContactCity(this.getCity()); + contact.setContactCountry(this.getCountry()); + contact.setContactPhoneNumber(this.getPhoneNumber()); + contact.setContactFaxNumber(this.getFaxNumber()); + contact.setContactCellphoneNumber(this.getCellphoneNumber()); // Set contact in customer customer.setContact(contact);