]> git.mxchange.org Git - pizzaservice-war.git/blobdiff - src/java/org/mxchange/pizzaapplication/beans/customer/CustomerWebBean.java
updated jshop-ee-jar + made first calls
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / customer / CustomerWebBean.java
index 13e9c27ac46393184202c9f063df49d3b7751afa..fe9dec1b229f00c6cd70bf62ffe4474459a49897 100644 (file)
@@ -16,9 +16,7 @@
  */
 package org.mxchange.pizzaapplication.beans.customer;
 
-import org.mxchange.jcore.client.Client;
-import org.mxchange.jcore.contact.gender.Gender;
-import org.mxchange.jshop.beans.FrameworkBean;
+import org.mxchange.jcoreee.beans.FrameworkBean;
 
 /**
  * An interface for customer beans
@@ -26,227 +24,4 @@ import org.mxchange.jshop.beans.FrameworkBean;
  * @author Roland Haeder
  */
 public interface CustomerWebBean extends FrameworkBean {
-       /**
-        * Some "getter" for translated gender of the contact
-        *
-        * @return Translated / human-readable gender
-        */
-       public String getTranslatedGender ();
-
-       /**
-        * Gender of the contact
-        *
-        * @return the gender
-        */
-       public Gender getGender ();
-
-       /**
-        * Gender of the contact
-        *
-        * @param gender the gender to set
-        */
-       public void setGender (final Gender gender);
-
-       /**
-        * First name
-        *
-        * @return the first name
-        */
-       public String getFirstName ();
-
-       /**
-        * First name
-        *
-        * @param firstName the first name to set
-        */
-       public void setFirstName (final String firstName);
-
-       /**
-        * Family name
-        *
-        * @return the familyName
-        */
-       public String getFamilyName ();
-
-       /**
-        * Family name
-        *
-        * @param familyName the familyName to set
-        */
-       public void setFamilyName (final String familyName);
-
-       /**
-        * Companyname
-        *
-        * @return the companyName
-        */
-       public String getCompanyName ();
-
-       /**
-        * Companyname
-        *
-        * @param companyName the companyName to set
-        */
-       public void setCompanyName (final String companyName);
-
-       /**
-        * Street
-        *
-        * @return the street
-        */
-       public String getStreet ();
-
-       /**
-        * Street
-        *
-        * @param street the street to set
-        */
-       public void setStreet (final String street);
-
-       /**
-        * House number
-        *
-        * @return the houseNumber
-        */
-       public Long getHouseNumber ();
-
-       /**
-        * House number
-        *
-        * @param houseNumber the houseNumber to set
-        */
-       public void setHouseNumber (final Long houseNumber);
-
-       /**
-        * ZIP code
-        *
-        * @return the zipCode
-        */
-       public Long getZipCode ();
-
-       /**
-        * ZIP code
-        *
-        * @param zipCode the zipCode to set
-        */
-       public void setZipCode (final Long zipCode);
-
-       /**
-        * City
-        *
-        * @return the city
-        */
-       public String getCity ();
-
-       /**
-        * City
-        *
-        * @param city the city to set
-        */
-       public void setCity (final String city);
-
-       /**
-        * Country code
-        *
-        * @return the countryCode
-        */
-       public String getCountryCode ();
-
-       /**
-        * Country code
-        *
-        * @param countryCode the countryCode to set
-        */
-       public void setCountryCode (final String countryCode);
-
-       /**
-        * Email address
-        *
-        * @return the emailAddress
-        */
-       public String getEmailAddress ();
-
-       /**
-        * Email address
-        *
-        * @param emailAddress the emailAddress to set
-        */
-       public void setEmailAddress (final String emailAddress);
-
-       /**
-        * Phone number
-        *
-        * @return the phoneNumber
-        */
-       public String getPhoneNumber ();
-
-       /**
-        * Phone number
-        *
-        * @param phoneNumber the phoneNumber to set
-        */
-       public void setPhoneNumber (final String phoneNumber);
-
-       /**
-        * Fax number
-        *
-        * @return the faxNumber
-        */
-       public String getFaxNumber ();
-
-       /**
-        * Fax number
-        *
-        * @param faxNumber the faxNumber to set
-        */
-       public void setFaxNumber (final String faxNumber);
-
-       /**
-        * Cellphone number
-        *
-        * @return the cellphoneNumber
-        */
-       public String getCellphoneNumber ();
-
-       /**
-        * Cellphone number
-        *
-        * @param cellphoneNumber the cellphoneNumber to set
-        */
-       public void setCellphoneNumber (final String cellphoneNumber);
-
-       /**
-        * Birth day
-        *
-        * @return the birthday
-        */
-       public String getBirthday ();
-
-       /**
-        * Birth day
-        *
-        * @param birthday the birthday to set
-        */
-       public void setBirthday (final String birthday);
-
-       /**
-        * Comments
-        *
-        * @return the comment
-        */
-       public String getComment ();
-
-       /**
-        * Comments
-        *
-        * @param comment the comment to set
-        */
-       public void setComment (final String comment);
-
-       /**
-        * Checks whether the contact is user's own data
-        *
-        * @return Own data?
-        */
-       public boolean isOwnContact ();
 }