package com.tesora.dve.worker; /* * #%L * Tesora Inc. * Database Virtualization Engine * %% * Copyright (C) 2011 - 2014 Tesora Inc. * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * #L% */ public class UserAuthentication { String userid; String password; boolean adminUser; public UserAuthentication(String userid, String password, boolean adminUser) { this.userid = userid; this.password = password; this.adminUser = adminUser; } public String getUserid() { return userid; } public String getPassword() { return password; } public boolean isAdminUser() { return adminUser; } @Override public String toString() { return new StringBuffer().append("UserAuth(").append(userid).append(adminUser ? "[admin]" : "").append(")").toString(); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((password == null) ? 0 : password.hashCode()); result = prime * result + ((userid == null) ? 0 : userid.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; UserAuthentication other = (UserAuthentication) obj; if (password == null) { if (other.password != null) return false; } else if (!password.equals(other.password)) return false; if (userid == null) { if (other.userid != null) return false; } else if (!userid.equals(other.userid)) return false; return true; } }