/* Ara - capture species and specimen data * * Copyright (C) 2009 INBio ( Instituto Nacional de Biodiversidad ) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.inbio.ara.dto.security; import java.io.Serializable; /** * * @author esmata */ public class SystemUserDTO implements Serializable{ private Long userId; private String username; private String fullname; private String passwd; private Long enabled; private Long userTypeId; private Long userGroupId; /* For Graphical Inteface purposes */ private boolean selected; //Constructor public SystemUserDTO(){ } /** * @return the userId */ public Long getUserId() { return userId; } /** * @param userId the userId to set */ public void setUserId(Long userId) { this.userId = userId; } /** * @return the username */ public String getUsername() { return username; } /** * @param username the username to set */ public void setUsername(String username) { this.username = username; } /** * @return the fullname */ public String getFullname() { return fullname; } /** * @param fullname the fullname to set */ public void setFullname(String fullname) { this.fullname = fullname; } /** * @return the passwd */ public String getPasswd() { return passwd; } /** * @param passwd the passwd to set */ public void setPasswd(String passwd) { this.passwd = passwd; } /** * @return the enabled */ public Long getEnabled() { return enabled; } /** * @param enabled the enabled to set */ public void setEnabled(Long enabled) { this.enabled = enabled; } /** * @return the userTypeId */ public Long getUserTypeId() { return userTypeId; } /** * @param userTypeId the userTypeId to set */ public void setUserTypeId(Long userTypeId) { this.userTypeId = userTypeId; } /** * @return the selected */ public boolean isSelected() { return selected; } /** * @param selected the selected to set */ public void setSelected(boolean selected) { this.selected = selected; } /** * @return the userGroupId */ public Long getUserGroupId() { return userGroupId; } /** * @param userGroupId the userGroupId to set */ public void setUserGroupId(Long userGroupId) { this.userGroupId = userGroupId; } }