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;
*/
@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
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());
}
}
@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