64 lines
1.4 KiB
Java
64 lines
1.4 KiB
Java
package com.stackify.models;
|
|
|
|
public class User {
|
|
private String email;
|
|
private String name;
|
|
|
|
public User() {
|
|
}
|
|
|
|
public User(String email, String name) {
|
|
super();
|
|
this.email = email;
|
|
this.name = name;
|
|
}
|
|
|
|
public String getEmail() {
|
|
return email;
|
|
}
|
|
|
|
public void setEmail(String email) {
|
|
this.email = email;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
final int prime = 31;
|
|
int result = 1;
|
|
result = prime * result + ((email == null) ? 0 : email.hashCode());
|
|
result = prime * result + ((name == null) ? 0 : name.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;
|
|
User other = (User) obj;
|
|
if (email == null) {
|
|
if (other.email != null)
|
|
return false;
|
|
} else if (!email.equals(other.email))
|
|
return false;
|
|
if (name == null) {
|
|
if (other.name != null)
|
|
return false;
|
|
} else if (!name.equals(other.name))
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
}
|