X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Forg%2Fmxchange%2Fjshopcore%2Fmodel%2Fcustomer%2FCustomer.java;h=0a9492f40b3bc046c68b1b3f60f48d1d322a5892;hb=672084ab2c551cbff8c8c424780ed344f7c13925;hp=ffb8354277cdbc3478e655d0ed9d63568b242f85;hpb=3c20a10b2675eed767e7d900980a514c39e3c397;p=jcustomer-core.git diff --git a/src/org/mxchange/jshopcore/model/customer/Customer.java b/src/org/mxchange/jshopcore/model/customer/Customer.java index ffb8354..0a9492f 100644 --- a/src/org/mxchange/jshopcore/model/customer/Customer.java +++ b/src/org/mxchange/jshopcore/model/customer/Customer.java @@ -23,126 +23,126 @@ import org.mxchange.jshopcore.model.customer.status.CustomerAccountStatus; /** * A customer interface - * + *

* @author Roland Haeder */ public interface Customer extends Serializable { /** * Copies all attributes from other customer object to this - * + *

* @param customer Source instance */ public void copyAll (final Customer customer); /** * Getter for contact instance - * + *

* @return Contact id number */ public Contact getContact (); /** * Setter for contact instance - * + *

* @param contact Contact instance */ public void setContact (final Contact contact); /** * Getter for confirmation key - * + *

* @return Confirmation key */ public String getCustomerConfirmKey (); /** * Setter for confirmation key - * + *

* @param customerConfirmKey Confirmation key */ public void setCustomerConfirmKey (final String customerConfirmKey); /** * Getter for "created" timestamp - * + *

* @return "created" timestamp */ public Calendar getCustomerCreated (); /** * Setter for "created" timestamp - * + *

* @param customerCreated "created" timestamp */ public void setCustomerCreated (final Calendar customerCreated); /** * Getter for customer id number - * + *

* @return Customer id number */ public Long getCustomerId (); /** * Settte for customer id number - * + *

* @param customerId Customer id number */ public void setCustomerId (final Long customerId); /** * Getter for "locked" timestamp - * + *

* @return "locked" timestamp */ public Calendar getCustomerLocked (); /** * Getter for "locked" timestamp - * + *

* @param customerLocked "locked" timestamp */ public void setCustomerLocked (final Calendar customerLocked); /** * Getter for customer number - * + *

* @return Customer number */ public String getCustomerNumber (); /** * Setter for customer number - * + *

* @param customerNumber Customer number */ public void setCustomerNumber (final String customerNumber); /** * Getter for password hash - * + *

* @return Password hash */ public String getCustomerPasswordHash (); /** * Setter for password hash - * + *

* @param customerPasswordHash Password hash */ public void setCustomerPasswordHash (final String customerPasswordHash); /** * Getter for account status - * + *

* @return Account status */ public CustomerAccountStatus getCustomerAccountStatus (); /** * Setter for account status - * + *

* @param customerStatus Account status */ public void setCustomerAccountStatus (final CustomerAccountStatus customerStatus);