Revize f9d108be
Přidáno uživatelem Pavel Fidransky před téměř 5 roky(ů)
server/src/main/java/org/danekja/ymanager/business/ApiManager.java | ||
---|---|---|
49 | 49 |
|
50 | 50 |
@Override |
51 | 51 |
@IsEmployer |
52 |
public List<VacationRequest> getVacationRequests(Status status) { |
|
52 |
public List<VacationRequestDTO> getVacationRequests(Status status) {
|
|
53 | 53 |
if (status == null) { |
54 | 54 |
return requestRepository.getAllVacationRequests(); |
55 | 55 |
} else { |
... | ... | |
59 | 59 |
|
60 | 60 |
@Override |
61 | 61 |
@IsEmployer |
62 |
public List<AuthorizationRequest> getAuthorizationRequests(Status status) { |
|
62 |
public List<AuthorizationRequestDTO> getAuthorizationRequests(Status status) {
|
|
63 | 63 |
if (status == null) { |
64 | 64 |
return requestRepository.getAllAuthorizations(); |
65 | 65 |
} else { |
... | ... | |
75 | 75 |
|
76 | 76 |
@Override |
77 | 77 |
@IsOwner |
78 |
public List<VacationDay> getUserCalendar(long userId, LocalDate fromDate, LocalDate toDate, Status status) { |
|
79 |
List<VacationDay> vacations; |
|
78 |
public List<VacationDayDTO> getUserCalendar(long userId, LocalDate fromDate, LocalDate toDate, Status status) {
|
|
79 |
List<VacationDayDTO> vacations;
|
|
80 | 80 |
if (status == null && toDate == null) { |
81 | 81 |
vacations = vacationRepository.getVacationDays(userId, fromDate); |
82 | 82 |
} else if (status == null) { |
... | ... | |
101 | 101 |
|
102 | 102 |
@Override |
103 | 103 |
@IsOwner |
104 |
public void createVacation(long userId, VacationDay vacationDay) {
|
|
105 |
if (vacationDay.getDate().isBefore(LocalDate.now())) { |
|
104 |
public void createVacation(long userId, VacationDayDTO vacationDayDTO) {
|
|
105 |
if (vacationDayDTO.getDate().isBefore(LocalDate.now())) {
|
|
106 | 106 |
throw new ResponseStatusException(HttpStatus.BAD_REQUEST, "Vacation cannot be token in past."); |
107 | 107 |
} |
108 | 108 |
|
109 |
if (vacationRepository.isExistVacationForUser(userId, vacationDay.getDate())) { |
|
109 |
if (vacationRepository.isExistVacationForUser(userId, vacationDayDTO.getDate())) {
|
|
110 | 110 |
throw new ResponseStatusException(HttpStatus.BAD_REQUEST, "Cannot take a double vacation for the same day."); |
111 | 111 |
} |
112 | 112 |
|
113 | 113 |
User user = userRepository.getUser(userId); |
114 |
vacationDay.setStatus(user.getRole() == UserRole.EMPLOYER ? Status.ACCEPTED : Status.PENDING); |
|
114 |
vacationDayDTO.setStatus(user.getRole() == UserRole.EMPLOYER ? Status.ACCEPTED : Status.PENDING);
|
|
115 | 115 |
|
116 | 116 |
Vacation vacation = new Vacation(); |
117 |
vacation.setDate(vacationDay.getDate()); |
|
118 |
vacation.setFrom(vacationDay.getFrom()); |
|
119 |
vacation.setTo(vacationDay.getTo()); |
|
120 |
vacation.setStatus(vacationDay.getStatus()); |
|
121 |
vacation.setType(vacationDay.getType()); |
|
117 |
vacation.setDate(vacationDayDTO.getDate());
|
|
118 |
vacation.setFrom(vacationDayDTO.getFrom());
|
|
119 |
vacation.setTo(vacationDayDTO.getTo());
|
|
120 |
vacation.setStatus(vacationDayDTO.getStatus());
|
|
121 |
vacation.setType(vacationDayDTO.getType());
|
|
122 | 122 |
|
123 | 123 |
if (vacation.getType() == VacationType.VACATION) { |
124 | 124 |
user.takeVacation(vacation.getFrom(), vacation.getTo()); |
... | ... | |
130 | 130 |
userRepository.updateUser(user); |
131 | 131 |
} |
132 | 132 |
|
133 |
private void changeSettingsByEmployee(User user, UserSettings settings, DefaultSettings defaultSettings) { |
|
133 |
private void changeSettingsByEmployee(User user, UserSettingsDTO settings, DefaultSettings defaultSettings) {
|
|
134 | 134 |
if (settings.getNotification() != null && !settings.getNotification().equals(user.getNotification())) { |
135 | 135 |
user.setNotification(settings.getNotification()); |
136 | 136 |
} |
... | ... | |
140 | 140 |
} |
141 | 141 |
} |
142 | 142 |
|
143 |
private void changeSettingsByEmployer(User user, UserSettings settings, DefaultSettings defaultSettings) { |
|
143 |
private void changeSettingsByEmployer(User user, UserSettingsDTO settings, DefaultSettings defaultSettings) {
|
|
144 | 144 |
|
145 | 145 |
if (settings.getRole() != null && !settings.getRole().equals(user.getRole())) { |
146 | 146 |
user.setRole(settings.getRole()); |
... | ... | |
172 | 172 |
|
173 | 173 |
@Override |
174 | 174 |
@IsOwner |
175 |
public void changeSettings(long userId, UserSettings settings) { |
|
175 |
public void changeSettings(long userId, UserSettingsDTO settings) {
|
|
176 | 176 |
UserRole invokedUserPermission = authService.getCurrentUser().getRole(); |
177 | 177 |
boolean invokedUserIsAdmin = invokedUserPermission.equals(UserRole.EMPLOYER); |
178 | 178 |
DefaultSettings defaultSettings = getDefaultSettings(); |
... | ... | |
191 | 191 |
@Override |
192 | 192 |
//TODO not called anyway, allow after reimplementation |
193 | 193 |
@DenyAll |
194 |
public void changeVacation(VacationDay vacationDay) {
|
|
195 |
Optional<Vacation> vacation = vacationRepository.getVacationDay(vacationDay.getId()); |
|
194 |
public void changeVacation(VacationDayDTO vacationDayDTO) {
|
|
195 |
Optional<Vacation> vacation = vacationRepository.getVacationDay(vacationDayDTO.getId());
|
|
196 | 196 |
if (vacation.isPresent()) { |
197 |
vacation.get().setDate(vacationDay.getDate()); |
|
198 |
vacation.get().setStatus(vacationDay.getStatus()); |
|
199 |
vacation.get().setType(vacationDay.getType()); |
|
200 |
vacation.get().setTime(vacationDay.getFrom(), vacationDay.getTo());
|
|
197 |
vacation.get().setDate(vacationDayDTO.getDate());
|
|
198 |
vacation.get().setStatus(vacationDayDTO.getStatus());
|
|
199 |
vacation.get().setType(vacationDayDTO.getType());
|
|
200 |
vacation.get().setTime(vacationDayDTO.getFrom(), vacationDayDTO.getTo());
|
|
201 | 201 |
vacationRepository.updateVacationDay(vacation.get()); |
202 | 202 |
} |
203 | 203 |
} |
204 | 204 |
|
205 | 205 |
@Override |
206 | 206 |
@IsEmployer |
207 |
public void changeRequest(RequestType type, BasicRequest request) { |
|
207 |
public void changeRequest(RequestType type, BasicRequestDTO request) {
|
|
208 | 208 |
switch (type) { |
209 | 209 |
case VACATION: |
210 | 210 |
Optional<Vacation> vacationDayOpt = vacationRepository.getVacationDay(request.getId()); |
server/src/main/java/org/danekja/ymanager/business/Manager.java | ||
---|---|---|
11 | 11 |
public interface Manager { |
12 | 12 |
|
13 | 13 |
|
14 |
List<VacationRequest> getVacationRequests(Status status); |
|
14 |
List<VacationRequestDTO> getVacationRequests(Status status);
|
|
15 | 15 |
|
16 |
List<AuthorizationRequest> getAuthorizationRequests(Status status); |
|
16 |
List<AuthorizationRequestDTO> getAuthorizationRequests(Status status);
|
|
17 | 17 |
|
18 | 18 |
DefaultSettings getDefaultSettings(); |
19 | 19 |
|
20 |
List<VacationDay> getUserCalendar(long userId, LocalDate fromDate, LocalDate toDate, Status status); |
|
20 |
List<VacationDayDTO> getUserCalendar(long userId, LocalDate fromDate, LocalDate toDate, Status status);
|
|
21 | 21 |
|
22 | 22 |
void createSettings(DefaultSettings settings); |
23 | 23 |
|
24 |
void createVacation(long userId, VacationDay vacationDay);
|
|
24 |
void createVacation(long userId, VacationDayDTO vacationDayDTO);
|
|
25 | 25 |
|
26 |
void changeSettings(long userId, UserSettings settings); |
|
26 |
void changeSettings(long userId, UserSettingsDTO settings);
|
|
27 | 27 |
|
28 |
void changeVacation(VacationDay vacationDay);
|
|
28 |
void changeVacation(VacationDayDTO vacationDayDTO);
|
|
29 | 29 |
|
30 |
void changeRequest(RequestType type, BasicRequest request); |
|
30 |
void changeRequest(RequestType type, BasicRequestDTO request);
|
|
31 | 31 |
|
32 | 32 |
void deleteVacation(long vacationId); |
33 | 33 |
} |
server/src/main/java/org/danekja/ymanager/business/UserManager.java | ||
---|---|---|
3 | 3 |
import org.danekja.ymanager.domain.GoogleUser; |
4 | 4 |
import org.danekja.ymanager.domain.Status; |
5 | 5 |
import org.danekja.ymanager.domain.User; |
6 |
import org.danekja.ymanager.dto.BasicProfileUser; |
|
6 |
import org.danekja.ymanager.dto.BasicProfileUserDTO;
|
|
7 | 7 |
import org.springframework.security.oauth2.core.oidc.OidcIdToken; |
8 | 8 |
|
9 | 9 |
import java.util.List; |
... | ... | |
21 | 21 |
* @param status status filter value |
22 | 22 |
* @return list of users or empty list if none found |
23 | 23 |
*/ |
24 |
List<BasicProfileUser> getUsers(Status status); |
|
24 |
List<BasicProfileUserDTO> getUsers(Status status);
|
|
25 | 25 |
|
26 | 26 |
/** |
27 | 27 |
* Gets user by id (PK) |
server/src/main/java/org/danekja/ymanager/business/impl/DefaultUserManager.java | ||
---|---|---|
4 | 4 |
import org.danekja.ymanager.business.auth.anot.IsEmployer; |
5 | 5 |
import org.danekja.ymanager.business.auth.anot.IsOwner; |
6 | 6 |
import org.danekja.ymanager.domain.*; |
7 |
import org.danekja.ymanager.dto.BasicProfileUser; |
|
7 |
import org.danekja.ymanager.dto.BasicProfileUserDTO;
|
|
8 | 8 |
import org.danekja.ymanager.repository.SettingsRepository; |
9 | 9 |
import org.danekja.ymanager.repository.UserRepository; |
10 | 10 |
import org.danekja.ymanager.repository.VacationRepository; |
... | ... | |
60 | 60 |
|
61 | 61 |
@Override |
62 | 62 |
@IsEmployer |
63 |
public List<BasicProfileUser> getUsers(Status status) { |
|
64 |
List<BasicProfileUser> users = userRepository.getAllBasicUsers(status == null ? Status.ACCEPTED : status); |
|
63 |
public List<BasicProfileUserDTO> getUsers(Status status) {
|
|
64 |
List<BasicProfileUserDTO> users = userRepository.getAllBasicUsers(status == null ? Status.ACCEPTED : status);
|
|
65 | 65 |
|
66 | 66 |
LocalDate today = LocalDate.now(); |
67 | 67 |
LocalDate weekBefore = today.minusWeeks(1); |
68 | 68 |
LocalDate weekAfter = today.plusWeeks(1); |
69 |
for (BasicProfileUser user : users) { |
|
69 |
for (BasicProfileUserDTO user : users) {
|
|
70 | 70 |
user.setCalendar(vacationRepository.getVacationDays(user.getId(), weekBefore, weekAfter)); |
71 | 71 |
} |
72 | 72 |
|
server/src/main/java/org/danekja/ymanager/dto/AuthorizationRequest.java | ||
---|---|---|
1 |
package org.danekja.ymanager.dto; |
|
2 |
|
|
3 |
import org.danekja.ymanager.domain.Status; |
|
4 |
|
|
5 |
import java.time.LocalDateTime; |
|
6 |
|
|
7 |
/** |
|
8 |
* An instance of the messenger class {@code AuthorizationRequest} is just a different view of a user. |
|
9 |
* It stores information relevant to a user's authorization in the application. |
|
10 |
* This class is used to communication with a frontend. |
|
11 |
*/ |
|
12 |
public class AuthorizationRequest { |
|
13 |
/** |
|
14 |
* The user's ID. |
|
15 |
*/ |
|
16 |
private Long id; |
|
17 |
|
|
18 |
/** |
|
19 |
* The user's first name. |
|
20 |
*/ |
|
21 |
private String firstName; |
|
22 |
|
|
23 |
/** |
|
24 |
* The user's last name. |
|
25 |
*/ |
|
26 |
private String lastName; |
|
27 |
|
|
28 |
/** |
|
29 |
* The user's authorization status. |
|
30 |
*/ |
|
31 |
private Status status; |
|
32 |
|
|
33 |
/** |
|
34 |
* The date and time of a creation of this request. |
|
35 |
*/ |
|
36 |
private LocalDateTime timestamp; |
|
37 |
|
|
38 |
/** |
|
39 |
* Returns the user's ID. |
|
40 |
* |
|
41 |
* @return the user's ID |
|
42 |
*/ |
|
43 |
public Long getId() { |
|
44 |
return this.id; |
|
45 |
} |
|
46 |
|
|
47 |
/** |
|
48 |
* Replaces the user's ID with the specified value. |
|
49 |
* |
|
50 |
* @param id the new user's ID |
|
51 |
*/ |
|
52 |
public void setId(final Long id) { |
|
53 |
this.id = id; |
|
54 |
} |
|
55 |
|
|
56 |
/** |
|
57 |
* Returns the user's first name. |
|
58 |
* |
|
59 |
* @return the user's first name |
|
60 |
*/ |
|
61 |
public String getFirstName() { |
|
62 |
return this.firstName; |
|
63 |
} |
|
64 |
|
|
65 |
/** |
|
66 |
* Replaces the user's first name with the new specified value. |
|
67 |
* |
|
68 |
* @param firstName the new first name |
|
69 |
*/ |
|
70 |
public void setFirstName(final String firstName) { |
|
71 |
this.firstName = firstName; |
|
72 |
} |
|
73 |
|
|
74 |
/** |
|
75 |
* Returns the user's last name. |
|
76 |
* |
|
77 |
* @return the user's last name |
|
78 |
*/ |
|
79 |
public String getLastName() { |
|
80 |
return this.lastName; |
|
81 |
} |
|
82 |
|
|
83 |
/** |
|
84 |
* Replaces the user's last name with the given one. |
|
85 |
* |
|
86 |
* @param lastName the new last name |
|
87 |
*/ |
|
88 |
public void setLastName(final String lastName) { |
|
89 |
this.lastName = lastName; |
|
90 |
} |
|
91 |
|
|
92 |
/** |
|
93 |
* Returns the user's authorization status. |
|
94 |
* |
|
95 |
* @return the user's authorization status |
|
96 |
*/ |
|
97 |
public Status getStatus() { |
|
98 |
return this.status; |
|
99 |
} |
|
100 |
|
|
101 |
/** |
|
102 |
* Replaces the authorization status with the handed value. |
|
103 |
* |
|
104 |
* @param status the new authorization status |
|
105 |
*/ |
|
106 |
public void setStatus(final Status status) { |
|
107 |
this.status = status; |
|
108 |
} |
|
109 |
|
|
110 |
/** |
|
111 |
* Returns the date and time of a creation of this user's request. |
|
112 |
* |
|
113 |
* @return the date and time of the creation of this user's request |
|
114 |
*/ |
|
115 |
public LocalDateTime getTimestamp() { |
|
116 |
return this.timestamp; |
|
117 |
} |
|
118 |
|
|
119 |
/** |
|
120 |
* Replaces the date and time of a creation of this user's request with the given value. |
|
121 |
* |
|
122 |
* @param timestamp the new date and time of the creation of this user's request |
|
123 |
*/ |
|
124 |
public void setTimestamp(final LocalDateTime timestamp) { |
|
125 |
this.timestamp = timestamp; |
|
126 |
} |
|
127 |
} |
server/src/main/java/org/danekja/ymanager/dto/AuthorizationRequestDTO.java | ||
---|---|---|
1 |
package org.danekja.ymanager.dto; |
|
2 |
|
|
3 |
import org.danekja.ymanager.domain.Status; |
|
4 |
|
|
5 |
import java.time.LocalDateTime; |
|
6 |
|
|
7 |
/** |
|
8 |
* An instance of the messenger class {@code AuthorizationRequest} is just a different view of a user. |
|
9 |
* It stores information relevant to a user's authorization in the application. |
|
10 |
* This class is used to communication with a frontend. |
|
11 |
*/ |
|
12 |
public class AuthorizationRequestDTO { |
|
13 |
/** |
|
14 |
* The user's ID. |
|
15 |
*/ |
|
16 |
private Long id; |
|
17 |
|
|
18 |
/** |
|
19 |
* The user's first name. |
|
20 |
*/ |
|
21 |
private String firstName; |
|
22 |
|
|
23 |
/** |
|
24 |
* The user's last name. |
|
25 |
*/ |
|
26 |
private String lastName; |
|
27 |
|
|
28 |
/** |
|
29 |
* The user's authorization status. |
|
30 |
*/ |
|
31 |
private Status status; |
|
32 |
|
|
33 |
/** |
|
34 |
* The date and time of a creation of this request. |
|
35 |
*/ |
|
36 |
private LocalDateTime timestamp; |
|
37 |
|
|
38 |
/** |
|
39 |
* Returns the user's ID. |
|
40 |
* |
|
41 |
* @return the user's ID |
|
42 |
*/ |
|
43 |
public Long getId() { |
|
44 |
return this.id; |
|
45 |
} |
|
46 |
|
|
47 |
/** |
|
48 |
* Replaces the user's ID with the specified value. |
|
49 |
* |
|
50 |
* @param id the new user's ID |
|
51 |
*/ |
|
52 |
public void setId(final Long id) { |
|
53 |
this.id = id; |
|
54 |
} |
|
55 |
|
|
56 |
/** |
|
57 |
* Returns the user's first name. |
|
58 |
* |
|
59 |
* @return the user's first name |
|
60 |
*/ |
|
61 |
public String getFirstName() { |
|
62 |
return this.firstName; |
|
63 |
} |
|
64 |
|
|
65 |
/** |
|
66 |
* Replaces the user's first name with the new specified value. |
|
67 |
* |
|
68 |
* @param firstName the new first name |
|
69 |
*/ |
|
70 |
public void setFirstName(final String firstName) { |
|
71 |
this.firstName = firstName; |
|
72 |
} |
|
73 |
|
|
74 |
/** |
|
75 |
* Returns the user's last name. |
|
76 |
* |
|
77 |
* @return the user's last name |
|
78 |
*/ |
|
79 |
public String getLastName() { |
|
80 |
return this.lastName; |
|
81 |
} |
|
82 |
|
|
83 |
/** |
|
84 |
* Replaces the user's last name with the given one. |
|
85 |
* |
|
86 |
* @param lastName the new last name |
|
87 |
*/ |
|
88 |
public void setLastName(final String lastName) { |
|
89 |
this.lastName = lastName; |
|
90 |
} |
|
91 |
|
|
92 |
/** |
|
93 |
* Returns the user's authorization status. |
|
94 |
* |
|
95 |
* @return the user's authorization status |
|
96 |
*/ |
|
97 |
public Status getStatus() { |
|
98 |
return this.status; |
|
99 |
} |
|
100 |
|
|
101 |
/** |
|
102 |
* Replaces the authorization status with the handed value. |
|
103 |
* |
|
104 |
* @param status the new authorization status |
|
105 |
*/ |
|
106 |
public void setStatus(final Status status) { |
|
107 |
this.status = status; |
|
108 |
} |
|
109 |
|
|
110 |
/** |
|
111 |
* Returns the date and time of a creation of this user's request. |
|
112 |
* |
|
113 |
* @return the date and time of the creation of this user's request |
|
114 |
*/ |
|
115 |
public LocalDateTime getTimestamp() { |
|
116 |
return this.timestamp; |
|
117 |
} |
|
118 |
|
|
119 |
/** |
|
120 |
* Replaces the date and time of a creation of this user's request with the given value. |
|
121 |
* |
|
122 |
* @param timestamp the new date and time of the creation of this user's request |
|
123 |
*/ |
|
124 |
public void setTimestamp(final LocalDateTime timestamp) { |
|
125 |
this.timestamp = timestamp; |
|
126 |
} |
|
127 |
} |
server/src/main/java/org/danekja/ymanager/dto/BasicProfileUser.java | ||
---|---|---|
1 |
package org.danekja.ymanager.dto; |
|
2 |
|
|
3 |
import java.util.List; |
|
4 |
|
|
5 |
/** |
|
6 |
* An instance of the messenger class {@code BasicProfileUser} represents a basic profile of a user in a database. |
|
7 |
* The basic profile contains default, the most important informations which helps identify a user like a name or photo. |
|
8 |
* This class is used to communicate with a frontend. |
|
9 |
*/ |
|
10 |
public class BasicProfileUser { |
|
11 |
/** |
|
12 |
* The user's ID. |
|
13 |
*/ |
|
14 |
private Long id; |
|
15 |
|
|
16 |
/** |
|
17 |
* The user's first name. |
|
18 |
*/ |
|
19 |
private String firstName; |
|
20 |
|
|
21 |
/** |
|
22 |
* The user's last name. |
|
23 |
*/ |
|
24 |
private String lastName; |
|
25 |
|
|
26 |
/** |
|
27 |
* The URL of a user's photo. |
|
28 |
*/ |
|
29 |
private String photo; |
|
30 |
|
|
31 |
/** |
|
32 |
* The list of user's vacations. |
|
33 |
*/ |
|
34 |
private List<VacationDay> calendar; |
|
35 |
|
|
36 |
/** |
|
37 |
* Returns the user's ID. |
|
38 |
* |
|
39 |
* @return the user's ID |
|
40 |
*/ |
|
41 |
public Long getId() { |
|
42 |
return this.id; |
|
43 |
} |
|
44 |
|
|
45 |
/** |
|
46 |
* Replaces the user's ID with the specified value. |
|
47 |
* |
|
48 |
* @param id the new user's ID |
|
49 |
*/ |
|
50 |
public void setId(final Long id) { |
|
51 |
this.id = id; |
|
52 |
} |
|
53 |
|
|
54 |
/** |
|
55 |
* Returns the user's first name. |
|
56 |
* |
|
57 |
* @return the user's first name |
|
58 |
*/ |
|
59 |
public String getFirstName() { |
|
60 |
return this.firstName; |
|
61 |
} |
|
62 |
|
|
63 |
/** |
|
64 |
* Replaces the user's first name with the new specified value. |
|
65 |
* |
|
66 |
* @param firstName the new first name |
|
67 |
*/ |
|
68 |
public void setFirstName(final String firstName) { |
|
69 |
this.firstName = firstName; |
|
70 |
} |
|
71 |
|
|
72 |
/** |
|
73 |
* Returns the user's last name. |
|
74 |
* |
|
75 |
* @return the user's last name |
|
76 |
*/ |
|
77 |
public String getLastName() { |
|
78 |
return this.lastName; |
|
79 |
} |
|
80 |
|
|
81 |
/** |
|
82 |
* Replaces the user's last name with the given one. |
|
83 |
* |
|
84 |
* @param lastName the new last name |
|
85 |
*/ |
|
86 |
public void setLastName(final String lastName) { |
|
87 |
this.lastName = lastName; |
|
88 |
} |
|
89 |
|
|
90 |
/** |
|
91 |
* Returns the URL of a user's photo. |
|
92 |
* |
|
93 |
* @return the URL of the user's photo |
|
94 |
*/ |
|
95 |
public String getPhoto() { |
|
96 |
return this.photo; |
|
97 |
} |
|
98 |
|
|
99 |
/** |
|
100 |
* Replaces the URL of a user's photo with the given link. |
|
101 |
* |
|
102 |
* @param photo the new URL of the user's photo |
|
103 |
*/ |
|
104 |
public void setPhoto(final String photo) { |
|
105 |
this.photo = photo; |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Returns the list of user's vacations. |
|
110 |
* |
|
111 |
* @return the list of user's vacations |
|
112 |
*/ |
|
113 |
public List<VacationDay> getCalendar() { |
|
114 |
return this.calendar; |
|
115 |
} |
|
116 |
|
|
117 |
/** |
|
118 |
* Replaces the list of user's vacations with the given list. |
|
119 |
* |
|
120 |
* @param calendar the new list of vacations |
|
121 |
*/ |
|
122 |
public void setCalendar(final List<VacationDay> calendar) { |
|
123 |
this.calendar = calendar; |
|
124 |
} |
|
125 |
} |
server/src/main/java/org/danekja/ymanager/dto/BasicProfileUserDTO.java | ||
---|---|---|
1 |
package org.danekja.ymanager.dto; |
|
2 |
|
|
3 |
import java.util.List; |
|
4 |
|
|
5 |
/** |
|
6 |
* An instance of the messenger class {@code BasicProfileUser} represents a basic profile of a user in a database. |
|
7 |
* The basic profile contains default, the most important informations which helps identify a user like a name or photo. |
|
8 |
* This class is used to communicate with a frontend. |
|
9 |
*/ |
|
10 |
public class BasicProfileUserDTO { |
|
11 |
/** |
|
12 |
* The user's ID. |
|
13 |
*/ |
|
14 |
private Long id; |
|
15 |
|
|
16 |
/** |
|
17 |
* The user's first name. |
|
18 |
*/ |
|
19 |
private String firstName; |
|
20 |
|
|
21 |
/** |
|
22 |
* The user's last name. |
|
23 |
*/ |
|
24 |
private String lastName; |
|
25 |
|
|
26 |
/** |
|
27 |
* The URL of a user's photo. |
|
28 |
*/ |
|
29 |
private String photo; |
|
30 |
|
|
31 |
/** |
|
32 |
* The list of user's vacations. |
|
33 |
*/ |
|
34 |
private List<VacationDayDTO> calendar; |
|
35 |
|
|
36 |
/** |
|
37 |
* Returns the user's ID. |
|
38 |
* |
|
39 |
* @return the user's ID |
|
40 |
*/ |
|
41 |
public Long getId() { |
|
42 |
return this.id; |
|
43 |
} |
|
44 |
|
|
45 |
/** |
|
46 |
* Replaces the user's ID with the specified value. |
|
47 |
* |
|
48 |
* @param id the new user's ID |
|
49 |
*/ |
|
50 |
public void setId(final Long id) { |
|
51 |
this.id = id; |
|
52 |
} |
|
53 |
|
|
54 |
/** |
|
55 |
* Returns the user's first name. |
|
56 |
* |
|
57 |
* @return the user's first name |
|
58 |
*/ |
|
59 |
public String getFirstName() { |
|
60 |
return this.firstName; |
|
61 |
} |
|
62 |
|
|
63 |
/** |
|
64 |
* Replaces the user's first name with the new specified value. |
|
65 |
* |
|
66 |
* @param firstName the new first name |
|
67 |
*/ |
|
68 |
public void setFirstName(final String firstName) { |
|
69 |
this.firstName = firstName; |
|
70 |
} |
|
71 |
|
|
72 |
/** |
|
73 |
* Returns the user's last name. |
|
74 |
* |
|
75 |
* @return the user's last name |
|
76 |
*/ |
|
77 |
public String getLastName() { |
|
78 |
return this.lastName; |
|
79 |
} |
|
80 |
|
|
81 |
/** |
|
82 |
* Replaces the user's last name with the given one. |
|
83 |
* |
|
84 |
* @param lastName the new last name |
|
85 |
*/ |
|
86 |
public void setLastName(final String lastName) { |
|
87 |
this.lastName = lastName; |
|
88 |
} |
|
89 |
|
|
90 |
/** |
|
91 |
* Returns the URL of a user's photo. |
|
92 |
* |
|
93 |
* @return the URL of the user's photo |
|
94 |
*/ |
|
95 |
public String getPhoto() { |
|
96 |
return this.photo; |
|
97 |
} |
|
98 |
|
|
99 |
/** |
|
100 |
* Replaces the URL of a user's photo with the given link. |
|
101 |
* |
|
102 |
* @param photo the new URL of the user's photo |
|
103 |
*/ |
|
104 |
public void setPhoto(final String photo) { |
|
105 |
this.photo = photo; |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Returns the list of user's vacations. |
|
110 |
* |
|
111 |
* @return the list of user's vacations |
|
112 |
*/ |
|
113 |
public List<VacationDayDTO> getCalendar() { |
|
114 |
return this.calendar; |
|
115 |
} |
|
116 |
|
|
117 |
/** |
|
118 |
* Replaces the list of user's vacations with the given list. |
|
119 |
* |
|
120 |
* @param calendar the new list of vacations |
|
121 |
*/ |
|
122 |
public void setCalendar(final List<VacationDayDTO> calendar) { |
|
123 |
this.calendar = calendar; |
|
124 |
} |
|
125 |
} |
server/src/main/java/org/danekja/ymanager/dto/BasicRequest.java | ||
---|---|---|
1 |
package org.danekja.ymanager.dto; |
|
2 |
|
|
3 |
import org.danekja.ymanager.domain.Status; |
|
4 |
|
|
5 |
/** |
|
6 |
* An instance of the messenger class {@code BasicRequest} can represent an authorization or a vacation request. |
|
7 |
* The class is used for changing a status of the authorization or the vacation request when a client sends a request on an api endpoint. |
|
8 |
* This class is used to communicate with a frontend. |
|
9 |
*/ |
|
10 |
public class BasicRequest { |
|
11 |
/** |
|
12 |
* The ID of this request. |
|
13 |
*/ |
|
14 |
private Long id; |
|
15 |
|
|
16 |
/** |
|
17 |
* The approval/authorization status of this request. |
|
18 |
*/ |
|
19 |
private Status status; |
|
20 |
|
|
21 |
/** |
|
22 |
* Returns the ID of this request. |
|
23 |
* |
|
24 |
* @return the ID of this request |
|
25 |
*/ |
|
26 |
public Long getId() { |
|
27 |
return this.id; |
|
28 |
} |
|
29 |
|
|
30 |
/** |
|
31 |
* Replaces the user's ID with the specified value. |
|
32 |
* |
|
33 |
* @param id the new user's ID |
|
34 |
*/ |
|
35 |
public void setId(final Long id) { |
|
36 |
this.id = id; |
|
37 |
} |
|
38 |
|
|
39 |
/** |
|
40 |
* Returns the approval/authorization status of this request. |
|
41 |
* |
|
42 |
* @return the approval status of this vacation |
|
43 |
*/ |
|
44 |
public Status getStatus() { |
|
45 |
return this.status; |
|
46 |
} |
|
47 |
|
|
48 |
/** |
|
49 |
* Replaces the approval/authorization status of this request with the given value. |
|
50 |
* |
|
51 |
* @param status the new approval/authorization status |
|
52 |
*/ |
|
53 |
public void setStatus(final Status status) { |
|
54 |
this.status = status; |
|
55 |
} |
|
56 |
} |
server/src/main/java/org/danekja/ymanager/dto/BasicRequestDTO.java | ||
---|---|---|
1 |
package org.danekja.ymanager.dto; |
|
2 |
|
|
3 |
import org.danekja.ymanager.domain.Status; |
|
4 |
|
|
5 |
/** |
|
6 |
* An instance of the messenger class {@code BasicRequest} can represent an authorization or a vacation request. |
|
7 |
* The class is used for changing a status of the authorization or the vacation request when a client sends a request on an api endpoint. |
|
8 |
* This class is used to communicate with a frontend. |
|
9 |
*/ |
|
10 |
public class BasicRequestDTO { |
|
11 |
/** |
|
12 |
* The ID of this request. |
|
13 |
*/ |
|
14 |
private Long id; |
|
15 |
|
|
16 |
/** |
|
17 |
* The approval/authorization status of this request. |
|
18 |
*/ |
|
19 |
private Status status; |
|
20 |
|
|
21 |
/** |
|
22 |
* Returns the ID of this request. |
|
23 |
* |
|
24 |
* @return the ID of this request |
|
25 |
*/ |
|
26 |
public Long getId() { |
|
27 |
return this.id; |
|
28 |
} |
|
29 |
|
|
30 |
/** |
|
31 |
* Replaces the user's ID with the specified value. |
|
32 |
* |
|
33 |
* @param id the new user's ID |
|
34 |
*/ |
|
35 |
public void setId(final Long id) { |
|
36 |
this.id = id; |
|
37 |
} |
|
38 |
|
|
39 |
/** |
|
40 |
* Returns the approval/authorization status of this request. |
|
41 |
* |
|
42 |
* @return the approval status of this vacation |
|
43 |
*/ |
|
44 |
public Status getStatus() { |
|
45 |
return this.status; |
|
46 |
} |
|
47 |
|
|
48 |
/** |
|
49 |
* Replaces the approval/authorization status of this request with the given value. |
|
50 |
* |
|
51 |
* @param status the new approval/authorization status |
|
52 |
*/ |
|
53 |
public void setStatus(final Status status) { |
|
54 |
this.status = status; |
|
55 |
} |
|
56 |
} |
server/src/main/java/org/danekja/ymanager/dto/DefaultSettings.java | ||
---|---|---|
1 |
package org.danekja.ymanager.dto; |
|
2 |
|
|
3 |
import java.time.LocalDateTime; |
|
4 |
|
|
5 |
/** |
|
6 |
* The messenger class {@code DefaultSettings} contains default settings of users' informations that are known to the application. |
|
7 |
* Informations consist of a number of available sick days, date and time of an email notification. |
|
8 |
* Default settings are mainly used when the user is added to the application which means he/she can't have his/her own values. |
|
9 |
* This class is used to communicate with a frontend. |
|
10 |
*/ |
|
11 |
public class DefaultSettings { |
|
12 |
/** |
|
13 |
* The default number of available sick days. |
|
14 |
*/ |
|
15 |
private Integer sickDayCount; |
|
16 |
|
|
17 |
/** |
|
18 |
* The default date and time of sending an email warning about an incoming reset of remaining overtimes and sick days. |
|
19 |
*/ |
|
20 |
private LocalDateTime notification; |
|
21 |
|
|
22 |
public DefaultSettings() { |
|
23 |
} |
|
24 |
|
|
25 |
public DefaultSettings(Integer sickDayCount, LocalDateTime notification) { |
|
26 |
this.sickDayCount = sickDayCount; |
|
27 |
this.notification = notification; |
|
28 |
} |
|
29 |
|
|
30 |
public DefaultSettings(org.danekja.ymanager.domain.DefaultSettings src) { |
|
31 |
this.sickDayCount = src.getSickDayCount(); |
|
32 |
this.notification = src.getNotification(); |
|
33 |
} |
|
34 |
|
|
35 |
/** |
|
36 |
* Returns the default number of available sick days in this default settings. |
|
37 |
* |
|
38 |
* @return the default number of available sick days |
|
39 |
*/ |
|
40 |
public Integer getSickDayCount() { |
|
41 |
return this.sickDayCount; |
|
42 |
} |
|
43 |
|
|
44 |
/** |
|
45 |
* Replaces the default number of available sick days in this default settings with the given one. |
|
46 |
* |
|
47 |
* @param sickDayCount the new default number of available sick days |
|
48 |
*/ |
|
49 |
public void setSickDayCount(final Integer sickDayCount) { |
|
50 |
this.sickDayCount = sickDayCount; |
|
51 |
} |
|
52 |
|
|
53 |
/** |
|
54 |
* Returns the default date and time of sending an email warning about an incoming reset of remaining overtimes and sick days. |
|
55 |
* |
|
56 |
* @return the default date and time |
|
57 |
*/ |
|
58 |
public LocalDateTime getNotification() { |
|
59 |
return this.notification; |
|
60 |
} |
|
61 |
|
|
62 |
/** |
|
63 |
* Replaces the default date and time of sending an email warning about an incoming reset of remaining overtimes and sick days with the specified one. |
|
64 |
* |
|
65 |
* @param notification the new default date and time |
|
66 |
*/ |
|
67 |
public void setNotification(final LocalDateTime notification) { |
|
68 |
this.notification = notification; |
|
69 |
} |
|
70 |
|
|
71 |
public org.danekja.ymanager.domain.DefaultSettings toEntity() { |
|
72 |
return new org.danekja.ymanager.domain.DefaultSettings(getSickDayCount(), getNotification()); |
|
73 |
} |
|
74 |
} |
|
75 |
|
server/src/main/java/org/danekja/ymanager/dto/DefaultSettingsDTO.java | ||
---|---|---|
1 |
package org.danekja.ymanager.dto; |
|
2 |
|
|
3 |
import java.time.LocalDateTime; |
|
4 |
|
|
5 |
/** |
|
6 |
* The messenger class {@code DefaultSettings} contains default settings of users' informations that are known to the application. |
|
7 |
* Informations consist of a number of available sick days, date and time of an email notification. |
|
8 |
* Default settings are mainly used when the user is added to the application which means he/she can't have his/her own values. |
|
9 |
* This class is used to communicate with a frontend. |
|
10 |
*/ |
|
11 |
public class DefaultSettingsDTO { |
|
12 |
/** |
|
13 |
* The default number of available sick days. |
|
14 |
*/ |
|
15 |
private Integer sickDayCount; |
|
16 |
|
|
17 |
/** |
|
18 |
* The default date and time of sending an email warning about an incoming reset of remaining overtimes and sick days. |
|
19 |
*/ |
|
20 |
private LocalDateTime notification; |
|
21 |
|
|
22 |
public DefaultSettingsDTO() { |
|
23 |
} |
|
24 |
|
|
25 |
public DefaultSettingsDTO(Integer sickDayCount, LocalDateTime notification) { |
|
26 |
this.sickDayCount = sickDayCount; |
|
27 |
this.notification = notification; |
|
28 |
} |
|
29 |
|
|
30 |
public DefaultSettingsDTO(org.danekja.ymanager.domain.DefaultSettings src) { |
|
31 |
this.sickDayCount = src.getSickDayCount(); |
|
32 |
this.notification = src.getNotification(); |
|
33 |
} |
|
34 |
|
|
35 |
/** |
|
36 |
* Returns the default number of available sick days in this default settings. |
|
37 |
* |
|
38 |
* @return the default number of available sick days |
|
39 |
*/ |
|
40 |
public Integer getSickDayCount() { |
|
41 |
return this.sickDayCount; |
|
42 |
} |
|
43 |
|
|
44 |
/** |
|
45 |
* Replaces the default number of available sick days in this default settings with the given one. |
|
46 |
* |
|
47 |
* @param sickDayCount the new default number of available sick days |
|
48 |
*/ |
|
49 |
public void setSickDayCount(final Integer sickDayCount) { |
|
50 |
this.sickDayCount = sickDayCount; |
|
51 |
} |
|
52 |
|
|
53 |
/** |
|
54 |
* Returns the default date and time of sending an email warning about an incoming reset of remaining overtimes and sick days. |
|
55 |
* |
|
56 |
* @return the default date and time |
|
57 |
*/ |
|
58 |
public LocalDateTime getNotification() { |
|
59 |
return this.notification; |
|
60 |
} |
|
61 |
|
|
62 |
/** |
|
63 |
* Replaces the default date and time of sending an email warning about an incoming reset of remaining overtimes and sick days with the specified one. |
|
64 |
* |
|
65 |
* @param notification the new default date and time |
|
66 |
*/ |
|
67 |
public void setNotification(final LocalDateTime notification) { |
|
68 |
this.notification = notification; |
|
69 |
} |
|
70 |
|
|
71 |
public org.danekja.ymanager.domain.DefaultSettings toEntity() { |
|
72 |
return new org.danekja.ymanager.domain.DefaultSettings(getSickDayCount(), getNotification()); |
|
73 |
} |
|
74 |
} |
|
75 |
|
server/src/main/java/org/danekja/ymanager/dto/FullUserProfile.java | ||
---|---|---|
1 |
package org.danekja.ymanager.dto; |
|
2 |
|
|
3 |
import org.danekja.ymanager.domain.Status; |
|
4 |
import org.danekja.ymanager.domain.User; |
|
5 |
import org.danekja.ymanager.domain.UserRole; |
|
6 |
|
|
7 |
import java.time.LocalDateTime; |
|
8 |
|
|
9 |
/** |
|
10 |
* The messenger class {@code FullUserProfile} holds all informations about a user which is logged to the application. |
|
11 |
* This class is used to communicate with a frontend. |
|
12 |
*/ |
|
13 |
public class FullUserProfile { |
|
14 |
/** |
|
15 |
* The user's ID. |
|
16 |
*/ |
|
17 |
private Long id; |
|
18 |
|
|
19 |
/** |
|
20 |
* The user's first name. |
|
21 |
*/ |
|
22 |
private String firstName; |
|
23 |
|
|
24 |
/** |
|
25 |
* The user's last name. |
|
26 |
*/ |
|
27 |
private String lastName; |
|
28 |
|
|
29 |
/** |
|
30 |
* The URL of a user's photo. |
|
31 |
*/ |
|
32 |
private String photo; |
|
33 |
|
|
34 |
/** |
|
35 |
* The number of user's remaining hours of an overtime. |
|
36 |
*/ |
|
37 |
private Float vacationCount; |
|
38 |
|
|
39 |
/** |
|
40 |
* The number of user's sick days available during a year. |
|
41 |
*/ |
|
42 |
private Integer sickDayCount; |
|
43 |
|
|
44 |
/** |
|
45 |
* The number of user's taken sick days. |
|
46 |
*/ |
|
47 |
private Integer takenSickDayCount; |
|
48 |
|
|
49 |
/** |
|
50 |
* The user's authorization status. |
|
51 |
*/ |
|
52 |
private Status status; |
|
53 |
|
|
54 |
/** |
|
55 |
* The user's role. |
|
56 |
*/ |
|
57 |
private UserRole role; |
|
58 |
|
|
59 |
/** |
|
60 |
* The date and time of sending an email warning about an incoming reset of remaining overtimes and sick days. |
|
61 |
*/ |
|
62 |
private LocalDateTime notification; |
|
63 |
|
|
64 |
/** |
|
65 |
* The user's email address. |
|
66 |
*/ |
|
67 |
private String email; |
|
68 |
|
|
69 |
public FullUserProfile() { |
|
70 |
} |
|
71 |
|
|
72 |
public FullUserProfile(User user) { |
|
73 |
this(user.getId(), user.getFirstName(), user.getLastName(), user.getPhoto(), user.getVacationCount(), user.getTotalSickDayCount(), user.getTakenSickDayCount(), user.getStatus(), user.getRole(), user.getNotification(), user.getEmail()); |
|
74 |
} |
|
75 |
|
|
76 |
public FullUserProfile(Long id, String firstName, String lastName, String photo, Float vacationCount, Integer sickDayCount, Integer takenSickDayCount, Status status, UserRole role, LocalDateTime notification, String email) { |
|
77 |
this.id = id; |
|
78 |
this.firstName = firstName; |
|
79 |
this.lastName = lastName; |
|
80 |
this.photo = photo; |
|
81 |
this.vacationCount = vacationCount; |
|
82 |
this.sickDayCount = sickDayCount; |
|
83 |
this.takenSickDayCount = takenSickDayCount; |
|
84 |
this.status = status; |
|
85 |
this.role = role; |
|
86 |
this.notification = notification; |
|
87 |
this.email = email; |
|
88 |
} |
|
89 |
|
|
90 |
/** |
|
91 |
* Returns the user's email address. |
|
92 |
* |
|
93 |
* @return the user's email address |
|
94 |
*/ |
|
95 |
public String getEmail() { |
|
96 |
return this.email; |
|
97 |
} |
|
98 |
|
|
99 |
/** |
|
100 |
* Replaces the user's email address with the new given value. |
|
101 |
* |
|
102 |
* @param email the new email address |
|
103 |
*/ |
|
104 |
public void setEmail(final String email) { |
|
105 |
this.email = email; |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Returns the user's ID. |
|
110 |
* |
|
111 |
* @return the user's ID |
|
112 |
*/ |
|
113 |
public Long getId() { |
|
114 |
return this.id; |
|
115 |
} |
|
116 |
|
|
117 |
/** |
|
118 |
* Replaces the user's ID with the specified value. |
|
119 |
* |
|
120 |
* @param id the new user's ID |
|
121 |
*/ |
|
122 |
public void setId(final Long id) { |
|
123 |
this.id = id; |
|
124 |
} |
|
125 |
|
|
126 |
/** |
|
127 |
* Returns the user's first name. |
|
128 |
* |
|
129 |
* @return the user's first name |
|
130 |
*/ |
|
131 |
public String getFirstName() { |
|
132 |
return this.firstName; |
|
133 |
} |
|
134 |
|
|
135 |
/** |
|
136 |
* Returns the number of user's taken sick days. |
|
137 |
* |
|
138 |
* @return the number of user's taken sick days |
|
139 |
*/ |
|
140 |
public Integer getTakenSickDayCount() { |
|
141 |
return this.takenSickDayCount; |
|
142 |
} |
|
143 |
|
|
144 |
/** |
|
145 |
* Replaces the number of user's taken sick days with the new value. |
|
146 |
* |
|
147 |
* @param takenSickDayCount the new number of taken sick days |
|
148 |
*/ |
|
149 |
public void setTakenSickDayCount(final Integer takenSickDayCount) { |
|
150 |
this.takenSickDayCount = takenSickDayCount; |
|
151 |
} |
|
152 |
|
|
153 |
/** |
|
154 |
* Replaces the user's first name with the new specified value. |
|
155 |
* |
|
156 |
* @param firstName the new first name |
|
157 |
*/ |
|
158 |
public void setFirstName(final String firstName) { |
|
159 |
this.firstName = firstName; |
|
160 |
} |
|
161 |
|
|
162 |
/** |
|
163 |
* Returns the user's last name. |
|
164 |
* |
|
165 |
* @return the user's last name |
|
166 |
*/ |
|
167 |
public String getLastName() { |
|
168 |
return this.lastName; |
|
169 |
} |
|
170 |
|
|
171 |
/** |
|
172 |
* Replaces the user's last name with the given one. |
|
173 |
* |
|
174 |
* @param lastName the new last name |
|
175 |
*/ |
|
176 |
public void setLastName(final String lastName) { |
|
177 |
this.lastName = lastName; |
|
178 |
} |
|
179 |
|
|
180 |
/** |
|
181 |
* Returns the URL of a user's photo. |
|
182 |
* |
|
183 |
* @return the URL of the user's photo |
|
184 |
*/ |
|
185 |
public String getPhoto() { |
|
186 |
return this.photo; |
|
187 |
} |
|
188 |
|
|
189 |
/** |
|
190 |
* Replaces the URL of a user's photo with the given link. |
|
191 |
* |
|
192 |
* @param photo the new URL of the user's photo |
|
193 |
*/ |
|
194 |
public void setPhoto(final String photo) { |
|
195 |
this.photo = photo; |
|
196 |
} |
|
197 |
|
|
198 |
/** |
|
199 |
* Returns the number of user's remaining hours of an overtime. |
|
200 |
* |
|
201 |
* @return the number of user's remaining hours of the overtime |
|
202 |
*/ |
|
203 |
public Float getVacationCount() { |
|
204 |
return this.vacationCount; |
|
205 |
} |
|
206 |
|
|
207 |
/** |
|
208 |
* Replaces the number of user's remaining hours of an overtime with the specified value. |
|
209 |
* |
|
210 |
* @param vacationCount the new number of remaining hours of the overtime. |
|
211 |
*/ |
|
212 |
public void setVacationCount(final Float vacationCount) { |
|
213 |
this.vacationCount = vacationCount; |
|
214 |
} |
|
215 |
|
|
216 |
/** |
|
217 |
* Returns the number of user's sick days available during a year. |
|
218 |
* |
|
219 |
* @return the number of user's sick days available during the year |
|
220 |
*/ |
|
221 |
public Integer getSickDayCount() { |
|
222 |
return this.sickDayCount; |
|
223 |
} |
|
224 |
|
|
225 |
/** |
|
226 |
* Replaces the number of user's sick days available during a year with the new value. |
|
227 |
* |
|
228 |
* @param sickDayCount the new number of sick days available during the year |
|
229 |
*/ |
|
230 |
public void setSickDayCount(final Integer sickDayCount) { |
|
231 |
this.sickDayCount = sickDayCount; |
|
232 |
} |
|
233 |
|
|
234 |
/** |
|
235 |
* Returns the user's authorization status. |
|
236 |
* |
|
237 |
* @return the user's authorization status |
|
238 |
*/ |
|
239 |
public Status getStatus() { |
|
240 |
return this.status; |
|
241 |
} |
|
242 |
|
|
243 |
/** |
|
244 |
* Replaces the authorization status with the handed value. |
|
245 |
* |
|
246 |
* @param status the new authorization status |
|
247 |
*/ |
|
248 |
public void setStatus(final Status status) { |
|
249 |
this.status = status; |
|
250 |
} |
|
251 |
|
|
252 |
/** |
|
253 |
* Returns the user's role. |
|
254 |
* |
|
255 |
* @return the user's role |
|
256 |
*/ |
|
257 |
public UserRole getRole() { |
|
258 |
return this.role; |
|
259 |
} |
|
260 |
|
|
261 |
/** |
|
262 |
* Replaces the user's role with the new provided value. |
|
263 |
* |
|
264 |
* @param role the new role |
|
265 |
*/ |
|
266 |
public void setRole(final UserRole role) { |
|
267 |
this.role = role; |
|
268 |
} |
|
269 |
|
|
270 |
/** |
|
271 |
* Returns the date and time of sending an email warning about an incoming reset of remaining overtimes and sick days. |
|
272 |
* |
|
273 |
* @return the date and time |
|
274 |
*/ |
|
275 |
public LocalDateTime getNotification() { |
|
276 |
return this.notification; |
|
277 |
} |
|
278 |
|
|
279 |
/** |
|
280 |
* Replaces the date and time of sending an email warning about an incoming reset of remaining overtimes and sick days with the given value. |
|
281 |
* |
|
282 |
* @param notification the new date and time |
|
283 |
*/ |
|
284 |
public void setNotification(final LocalDateTime notification) { |
|
285 |
this.notification = notification; |
|
286 |
} |
|
287 |
} |
server/src/main/java/org/danekja/ymanager/dto/FullUserProfileDTO.java | ||
---|---|---|
1 |
package org.danekja.ymanager.dto; |
|
2 |
|
|
3 |
import org.danekja.ymanager.domain.Status; |
|
4 |
import org.danekja.ymanager.domain.User; |
|
5 |
import org.danekja.ymanager.domain.UserRole; |
|
6 |
|
|
7 |
import java.time.LocalDateTime; |
|
8 |
|
|
9 |
/** |
|
10 |
* The messenger class {@code FullUserProfile} holds all informations about a user which is logged to the application. |
|
11 |
* This class is used to communicate with a frontend. |
|
12 |
*/ |
|
13 |
public class FullUserProfileDTO { |
|
14 |
/** |
|
15 |
* The user's ID. |
|
16 |
*/ |
|
17 |
private Long id; |
|
18 |
|
|
19 |
/** |
|
20 |
* The user's first name. |
|
21 |
*/ |
|
22 |
private String firstName; |
|
23 |
|
|
24 |
/** |
|
25 |
* The user's last name. |
|
26 |
*/ |
|
27 |
private String lastName; |
|
28 |
|
|
29 |
/** |
|
30 |
* The URL of a user's photo. |
|
31 |
*/ |
|
32 |
private String photo; |
|
33 |
|
|
34 |
/** |
|
35 |
* The number of user's remaining hours of an overtime. |
|
36 |
*/ |
|
37 |
private Float vacationCount; |
|
38 |
|
|
39 |
/** |
|
40 |
* The number of user's sick days available during a year. |
|
41 |
*/ |
|
42 |
private Integer sickDayCount; |
|
43 |
|
|
44 |
/** |
|
45 |
* The number of user's taken sick days. |
|
46 |
*/ |
|
47 |
private Integer takenSickDayCount; |
|
48 |
|
|
49 |
/** |
|
50 |
* The user's authorization status. |
|
51 |
*/ |
|
52 |
private Status status; |
|
53 |
|
|
54 |
/** |
|
55 |
* The user's role. |
|
56 |
*/ |
|
57 |
private UserRole role; |
|
58 |
|
|
59 |
/** |
|
60 |
* The date and time of sending an email warning about an incoming reset of remaining overtimes and sick days. |
|
61 |
*/ |
|
62 |
private LocalDateTime notification; |
|
63 |
|
|
64 |
/** |
|
65 |
* The user's email address. |
|
66 |
*/ |
|
67 |
private String email; |
|
68 |
|
|
69 |
public FullUserProfileDTO() { |
|
70 |
} |
|
71 |
|
|
72 |
public FullUserProfileDTO(User user) { |
|
73 |
this(user.getId(), user.getFirstName(), user.getLastName(), user.getPhoto(), user.getVacationCount(), user.getTotalSickDayCount(), user.getTakenSickDayCount(), user.getStatus(), user.getRole(), user.getNotification(), user.getEmail()); |
|
74 |
} |
|
75 |
|
|
76 |
public FullUserProfileDTO(Long id, String firstName, String lastName, String photo, Float vacationCount, Integer sickDayCount, Integer takenSickDayCount, Status status, UserRole role, LocalDateTime notification, String email) { |
|
77 |
this.id = id; |
|
78 |
this.firstName = firstName; |
|
79 |
this.lastName = lastName; |
|
80 |
this.photo = photo; |
|
81 |
this.vacationCount = vacationCount; |
|
82 |
this.sickDayCount = sickDayCount; |
|
83 |
this.takenSickDayCount = takenSickDayCount; |
|
84 |
this.status = status; |
|
85 |
this.role = role; |
|
86 |
this.notification = notification; |
|
87 |
this.email = email; |
|
88 |
} |
|
89 |
|
|
90 |
/** |
|
91 |
* Returns the user's email address. |
|
92 |
* |
|
93 |
* @return the user's email address |
|
94 |
*/ |
|
95 |
public String getEmail() { |
|
96 |
return this.email; |
|
97 |
} |
|
98 |
|
|
99 |
/** |
|
100 |
* Replaces the user's email address with the new given value. |
|
101 |
* |
|
102 |
* @param email the new email address |
|
103 |
*/ |
|
104 |
public void setEmail(final String email) { |
|
105 |
this.email = email; |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Returns the user's ID. |
|
110 |
* |
|
111 |
* @return the user's ID |
|
112 |
*/ |
|
113 |
public Long getId() { |
|
114 |
return this.id; |
|
115 |
} |
|
116 |
|
|
117 |
/** |
|
118 |
* Replaces the user's ID with the specified value. |
|
119 |
* |
|
120 |
* @param id the new user's ID |
|
121 |
*/ |
|
122 |
public void setId(final Long id) { |
|
123 |
this.id = id; |
|
124 |
} |
|
125 |
|
|
126 |
/** |
|
127 |
* Returns the user's first name. |
|
128 |
* |
|
129 |
* @return the user's first name |
|
130 |
*/ |
|
131 |
public String getFirstName() { |
|
132 |
return this.firstName; |
|
133 |
} |
|
134 |
|
|
135 |
/** |
|
136 |
* Returns the number of user's taken sick days. |
|
137 |
* |
|
138 |
* @return the number of user's taken sick days |
|
139 |
*/ |
|
140 |
public Integer getTakenSickDayCount() { |
|
141 |
return this.takenSickDayCount; |
|
142 |
} |
|
143 |
|
|
144 |
/** |
|
145 |
* Replaces the number of user's taken sick days with the new value. |
|
146 |
* |
|
147 |
* @param takenSickDayCount the new number of taken sick days |
|
148 |
*/ |
|
149 |
public void setTakenSickDayCount(final Integer takenSickDayCount) { |
|
150 |
this.takenSickDayCount = takenSickDayCount; |
|
151 |
} |
|
152 |
|
|
153 |
/** |
|
154 |
* Replaces the user's first name with the new specified value. |
|
155 |
* |
|
156 |
* @param firstName the new first name |
|
157 |
*/ |
|
158 |
public void setFirstName(final String firstName) { |
|
159 |
this.firstName = firstName; |
|
160 |
} |
|
161 |
|
|
162 |
/** |
|
163 |
* Returns the user's last name. |
|
164 |
* |
|
165 |
* @return the user's last name |
|
166 |
*/ |
|
167 |
public String getLastName() { |
|
168 |
return this.lastName; |
|
169 |
} |
|
170 |
|
|
171 |
/** |
|
172 |
* Replaces the user's last name with the given one. |
Také k dispozici: Unified diff
re #32 rename classes returned from webservices to have -DTO suffix