blob: 80b8998ddf02196379925668cb3c442d81f0dc1b (
plain)
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
|
package org.traccar.web.client;
import org.traccar.web.shared.model.ApplicationSettings;
import org.traccar.web.shared.model.User;
import org.traccar.web.shared.model.UserSettings;
public class ApplicationContext {
private static final ApplicationContext context = new ApplicationContext();
public static ApplicationContext getInstance() {
return context;
}
private FormatterUtil formatterUtil;
public void setFormatterUtil(FormatterUtil formatterUtil) {
this.formatterUtil = formatterUtil;
}
public FormatterUtil getFormatterUtil() {
if (formatterUtil == null) {
formatterUtil = new FormatterUtil();
}
return formatterUtil;
}
private ApplicationSettings applicationSettings;
public void setApplicationSettings(ApplicationSettings applicationSettings) {
this.applicationSettings = applicationSettings;
}
public ApplicationSettings getApplicationSettings() {
if (applicationSettings != null) {
return applicationSettings;
} else {
return new ApplicationSettings(); // default settings
}
}
private User user;
public void setUser(User user) {
this.user = user;
}
public User getUser() {
return user;
}
public void setUserSettings(UserSettings userSettings) {
if (user != null) {
user.setUserSettings(userSettings);
}
}
public UserSettings getUserSettings() {
if (user != null && user.getUserSettings() != null) {
return user.getUserSettings();
} else {
return new UserSettings(); // default settings
}
}
}
|