@@ -35,6 +35,9 @@ public class User implements Serializable {
35
35
@ Convert (converter = FullNameConverter .class )
36
36
private FullName fullName ;
37
37
38
+ @ Column (name = "userName" )
39
+ private String userName ;
40
+
38
41
@ Column (name = "email" )
39
42
@ Convert (converter = EmailConverter .class )
40
43
private EmailAddress emailAddress ;
@@ -47,6 +50,15 @@ public class User implements Serializable {
47
50
protected User () {
48
51
}
49
52
53
+ private User (UserId id , FullName fullName , EmailAddress emailAddress ,
54
+ String userName , EncryptedPassword encryptedPassword ) {
55
+ this .id = id ;
56
+ this .fullName = fullName ;
57
+ this .emailAddress = emailAddress ;
58
+ this .encryptedPassword = encryptedPassword ;
59
+ this .userName = userName ;
60
+ }
61
+
50
62
/**
51
63
* Creates a new user account, with a unique identifier to unambiguously match the user within
52
64
* QBiC's organisation.
@@ -59,27 +71,20 @@ protected User() {
59
71
*
60
72
* @param fullName the full name of the user
61
73
* @param emailAddress the email address value of the user
74
+ * @param userName the desired username
62
75
* @param encryptedPassword the encrypted password of the new user
63
76
* @return the new user
64
77
* @since 1.0.0
65
78
*/
66
79
public static User create (FullName fullName , EmailAddress emailAddress ,
67
- EncryptedPassword encryptedPassword ) {
80
+ String userName , EncryptedPassword encryptedPassword ) {
68
81
UserId id = UserId .create ();
69
- var user = new User (id , fullName , emailAddress , encryptedPassword );
82
+ var user = new User (id , fullName , emailAddress , userName , encryptedPassword );
70
83
user .active = false ;
71
84
72
85
return user ;
73
86
}
74
87
75
- private User (UserId id , FullName fullName , EmailAddress emailAddress ,
76
- EncryptedPassword encryptedPassword ) {
77
- this .id = id ;
78
- this .fullName = fullName ;
79
- this .emailAddress = emailAddress ;
80
- this .encryptedPassword = encryptedPassword ;
81
- }
82
-
83
88
@ Override
84
89
public String toString () {
85
90
return "User{" +
@@ -91,10 +96,6 @@ public String toString() {
91
96
'}' ;
92
97
}
93
98
94
- private void setEncryptedPassword (EncryptedPassword encryptedPassword ) {
95
- this .encryptedPassword = encryptedPassword ;
96
- }
97
-
98
99
/**
99
100
* Get access to the encrypted password
100
101
*
@@ -105,6 +106,10 @@ public EncryptedPassword getEncryptedPassword() {
105
106
return this .encryptedPassword ;
106
107
}
107
108
109
+ private void setEncryptedPassword (EncryptedPassword encryptedPassword ) {
110
+ this .encryptedPassword = encryptedPassword ;
111
+ }
112
+
108
113
public UserId id () {
109
114
return this .id ;
110
115
}
@@ -113,6 +118,10 @@ public EmailAddress emailAddress() {
113
118
return this .emailAddress ;
114
119
}
115
120
121
+ public String userName () {
122
+ return userName ;
123
+ }
124
+
116
125
public FullName fullName () {
117
126
return this .fullName ;
118
127
}
0 commit comments