]> git.mxchange.org Git - jproduct-core.git/blobdiff - src/org/mxchange/jshopcore/model/customer/Customer.java
added equals()/hashCode() for easier checking
[jproduct-core.git] / src / org / mxchange / jshopcore / model / customer / Customer.java
index a44a19631b937e7bb1a79bfa7830ad58884fb08a..d2bd2b356744ba42ad66cdb9e0eb3bd971be99c9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 Roland Haeder
+ * Copyright (C) 2016 Roland Haeder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -146,4 +146,10 @@ public interface Customer extends Serializable {
         * @param customerStatus Account status
         */
        void setCustomerAccountStatus (final CustomerAccountStatus customerStatus);
+
+       @Override
+       boolean equals (final Object object);
+
+       @Override
+       int hashCode ();
 }