com.salesmanager.shop.model.customer.SecuredShopPersistableCustomer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sm-shop-model Show documentation
Show all versions of sm-shop-model Show documentation
sm-shop-model contains Shopizer model objects for api
The newest version!
package com.salesmanager.shop.model.customer;
public class SecuredShopPersistableCustomer extends SecuredCustomer {
/**
*
*/
private static final long serialVersionUID = 1L;
private String checkPassword;
public String getCheckPassword() {
return checkPassword;
}
public void setCheckPassword(String checkPassword) {
this.checkPassword = checkPassword;
}
}