/* * Copyright 2014 by SCSK Corporation. * * This file is part of PrimeCloud Controller(TM). * * PrimeCloud Controller(TM) 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 2 of the License, or * (at your option) any later version. * * PrimeCloud Controller(TM) 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 PrimeCloud Controller(TM). If not, see <http://www.gnu.org/licenses/>. */ package jp.primecloud.auto.entity.crud; import java.io.Serializable; import java.util.Date; /** * <p> * USERに対応したエンティティのベースクラスです。 * </p> * */ public abstract class BaseUser implements Serializable { /** SerialVersionUID */ private static final long serialVersionUID = 1L; /** USER_NO [BIGINT(19,0)] */ private Long userNo; /** USERNAME [VARCHAR(50,0)] */ private String username; /** PASSWORD [VARCHAR(50,0)] */ private String password; /** ENABLED [BIT(0,0)] */ private Boolean enabled; /** LAST_LOGIN_DATE [DATETIME(0,0)] */ private Date lastLoginDate; /** * userNoを取得します。 * * @return userNo */ public Long getUserNo() { return userNo; } /** * userNoを設定します。 * * @param userNo userNo */ public void setUserNo(Long userNo) { this.userNo = userNo; } /** * usernameを取得します。 * * @return username */ public String getUsername() { return username; } /** * usernameを設定します。 * * @param username username */ public void setUsername(String username) { this.username = username; } /** * passwordを取得します。 * * @return password */ public String getPassword() { return password; } /** * passwordを設定します。 * * @param password password */ public void setPassword(String password) { this.password = password; } /** * enabledを取得します。 * * @return enabled */ public Boolean getEnabled() { return enabled; } /** * enabledを設定します。 * * @param enabled enabled */ public void setEnabled(Boolean enabled) { this.enabled = enabled; } /** * lastLoginDateを取得します。 * * @return lastLoginDate */ public Date getLastLoginDate() { return lastLoginDate; } /** * lastLoginDateを設定します。 * * @param lastLoginDate lastLoginDate */ public void setLastLoginDate(Date lastLoginDate) { this.lastLoginDate = lastLoginDate; } /** * {@inheritDoc} */ @Override public int hashCode() { int result = 1; final int prime = 31; result = prime * result + ((userNo == null) ? 0 : userNo.hashCode()); result = prime * result + ((username == null) ? 0 : username.hashCode()); result = prime * result + ((password == null) ? 0 : password.hashCode()); result = prime * result + ((enabled == null) ? 0 : enabled.hashCode()); result = prime * result + ((lastLoginDate == null) ? 0 : lastLoginDate.hashCode()); return result; } /** * {@inheritDoc} */ @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final BaseUser other = (BaseUser) obj; if (userNo == null) { if (other.userNo != null) { return false; } } else if (!userNo.equals(other.userNo)) { return false; } if (username == null) { if (other.username != null) { return false; } } else if (!username.equals(other.username)) { return false; } if (password == null) { if (other.password != null) { return false; } } else if (!password.equals(other.password)) { return false; } if (enabled == null) { if (other.enabled != null) { return false; } } else if (!enabled.equals(other.enabled)) { return false; } if (lastLoginDate == null) { if (other.lastLoginDate != null) { return false; } } else if (!lastLoginDate.equals(other.lastLoginDate)) { return false; } return true; } /** * {@inheritDoc} */ @Override public String toString() { StringBuffer sb = new StringBuffer(); sb.append("User").append(" ["); sb.append("userNo=").append(userNo).append(", "); sb.append("username=").append(username).append(", "); sb.append("password=").append(password).append(", "); sb.append("enabled=").append(enabled).append(", "); sb.append("lastLoginDate=").append(lastLoginDate); sb.append("]"); return sb.toString(); } }