All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.salesmanager.shop.model.user.PersistableUser Maven / Gradle / Ivy

The newest version!
package com.salesmanager.shop.model.user;

import java.util.ArrayList;
import java.util.List;
import com.salesmanager.shop.model.security.PersistableGroup;

public class PersistableUser extends UserEntity {

	private String password;
	private String store;
	private String userName;
	private boolean active;

	public String getUserName() {
		return userName;
	}

	public void setUserName(String userName) {
		this.userName = userName;
	}

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	private List groups = new ArrayList();

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public List getGroups() {
		return groups;
	}

	public void setGroups(List groups) {
		this.groups = groups;
	}

	public String getStore() {
		return store;
	}

	public void setStore(String store) {
		this.store = store;
	}

	public boolean isActive() {
		return active;
	}

	public void setActive(boolean active) {
		this.active = active;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy