UserDto.java
634 Bytes
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
package net.ziemers.swxercise.lg.user.dto;
import javax.validation.constraints.NotNull;
public class UserDto {
@NotNull
private String username;
@NotNull
private String password;
private String firstname;
private String lastname;
private String mailaddress;
public String getUsername() {
return username;
}
public String getPassword() {
return password;
}
public String getFirstname() {
return firstname;
}
public String getLastname() {
return lastname;
}
public String getMailaddress() {
return mailaddress;
}
}