-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathUser.java
90 lines (70 loc) · 2.03 KB
/
User.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
* Copyright (c) 2017 Otávio Santana and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php.
*
* You may elect to redistribute this code under either of these licenses.
*
* Contributors:
*
* Otavio Santana
*/
package org.jnosql.demo.key;
import org.jnosql.artemis.Entity;
import org.jnosql.artemis.Id;
import java.io.Serializable;
import java.util.List;
import java.util.Objects;
@Entity
public class User implements Serializable {
@Id
private String userName;
private String name;
private List<String> phones;
public String getUserName() {
return userName;
}
public String getName() {
return name;
}
public List<String> getPhones() {
return phones;
}
public User() {
}
User(String userName, String name, List<String> phones) {
this.userName = userName;
this.name = name;
this.phones = phones;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
User user = (User) o;
return Objects.equals(userName, user.userName);
}
@Override
public int hashCode() {
return Objects.hashCode(userName);
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("User{");
sb.append("userName='").append(userName).append('\'');
sb.append(", name='").append(name).append('\'');
sb.append(", phones=").append(phones);
sb.append('}');
return sb.toString();
}
public static UserBuilder builder() {
return new UserBuilder();
}
}