]> git.mxchange.org Git - pizzaservice-core.git/commitdiff
added field for last-locked reason
authorRoland Häder <roland@mxchange.org>
Thu, 28 Apr 2016 09:47:45 +0000 (11:47 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 28 Apr 2016 17:25:57 +0000 (19:25 +0200)
src/org/mxchange/pizzaaplication/model/customer/PizzaCustomer.java

index d87fdd16b43807addf2e18f5facc4f51b82da6a5..95f0b3c9e546618cc3ce2374d885074e39185b6e 100644 (file)
@@ -29,6 +29,7 @@ import javax.persistence.GenerationType;
 import javax.persistence.Id;
 import javax.persistence.Index;
 import javax.persistence.JoinColumn;
+import javax.persistence.Lob;
 import javax.persistence.NamedQueries;
 import javax.persistence.NamedQuery;
 import javax.persistence.OneToOne;
@@ -103,7 +104,14 @@ public class PizzaCustomer implements Customer {
         */
        @Column (name = "customer_last_locked")
        @Temporal (TemporalType.TIMESTAMP)
-       private Calendar customerLocked;
+       private Calendar customerLastLocked;
+
+       /**
+        * Last locked reason
+        */
+       @Lob
+       @Column (name = "customer_last_locked_reason")
+       private String customerLastLockedReason;
 
        /**
         * Customer number
@@ -150,7 +158,8 @@ public class PizzaCustomer implements Customer {
                this.setCustomerContact(customer.getCustomerContact());
                this.setCustomerCreated(customer.getCustomerCreated());
                this.setCustomerId(customer.getCustomerId());
-               this.setCustomerLocked(customer.getCustomerLocked());
+               this.setCustomerLastLocked(customer.getCustomerLastLocked());
+               this.setCustomerLastLockedReason(customer.getCustomerLastLockedReason());
                this.setCustomerNumber(customer.getCustomerNumber());
        }
 
@@ -239,13 +248,23 @@ public class PizzaCustomer implements Customer {
        }
 
        @Override
-       public Calendar getCustomerLocked () {
-               return this.customerLocked;
+       public Calendar getCustomerLastLocked () {
+               return this.customerLastLocked;
+       }
+
+       @Override
+       public void setCustomerLastLocked (final Calendar customerLastLocked) {
+               this.customerLastLocked = customerLastLocked;
+       }
+
+       @Override
+       public String getCustomerLastLockedReason () {
+               return this.customerLastLockedReason;
        }
 
        @Override
-       public void setCustomerLocked (final Calendar customerLocked) {
-               this.customerLocked = customerLocked;
+       public void setCustomerLastLockedReason (final String customerLastLockedReason) {
+               this.customerLastLockedReason = customerLastLockedReason;
        }
 
        @Override