SharedServiceSpring.java
2.19 KB
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
package org.legrog.web.xyz;
import org.legrog.entities.*;
import org.legrog.web.user.UserService;
//import org.slf4j.Logger;
//import org.slf4j.LoggerFactory;
import javax.ejb.Stateless;
import javax.inject.Inject;
import java.util.List;
import java.util.Random;
import java.util.Vector;
@Stateless
public class SharedServiceSpring implements SharedService {
CountryRepository countryRepository;
AccountRoleRepository accountRoleRepository;
AccountPropertyRepository accountPropertyRepository;
UserService userService;
@Inject
public SharedServiceSpring(CountryRepository countryRepository, AccountRoleRepository accountRoleRepository,
AccountPropertyRepository accountPropertyRepository, UserService userService) {
this.countryRepository = countryRepository;
this.accountRoleRepository = accountRoleRepository;
this.accountPropertyRepository = accountPropertyRepository;
this.userService = userService;
}
private List<DisplayNameMask> allDisplayNameMasks;
public Country addCountry(Country country) {
countryRepository.save(country);
return country;
}
public List<Country> getAllCountries() {
return countryRepository.findAll();
}
public List<DisplayNameMask> getAllDisplayNameMasks() {
if (allDisplayNameMasks == null)
{
allDisplayNameMasks = new Vector<DisplayNameMask>(DisplayNameMask.values().length);
for (DisplayNameMask mask : DisplayNameMask.values())
{
allDisplayNameMasks.add(mask);
}
}
return allDisplayNameMasks;
}
public List<AccountRole> getAvailableUserRoles() {
return accountRoleRepository.findAll();
}
public List<AccountProperty> getAvailableUserProperties() { return accountPropertyRepository.findAll(); }
public Account getCurrentUser() {
// TODO Remplacer l'astuce par une vraie récupération de l'utilisateur
List<Account> accounts = userService.getAllUsers();
Random random = new Random();
Account account = accounts.get(random.nextInt(accounts.size()));
// End TODO
return account;
}
}