com.salesmanager.shop.model.customer.ReadableCustomer 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;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import com.salesmanager.shop.model.customer.attribute.ReadableCustomerAttribute;
import com.salesmanager.shop.model.security.ReadableGroup;
public class ReadableCustomer extends CustomerEntity implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private List attributes = new ArrayList();
private List groups = new ArrayList();
public void setAttributes(List attributes) {
this.attributes = attributes;
}
public List getAttributes() {
return attributes;
}
public List getGroups() {
return groups;
}
public void setGroups(List groups) {
this.groups = groups;
}
}