1 package ecar.portal;
2
3 import java.util.List;
4
5 import javax.servlet.http.HttpServletRequest;
6
7 import ecar.dao.SegmentoCategoriaDao;
8 import ecar.exception.ECARException;
9 import ecar.pojo.UsuarioUsu;
10
11
12 public class CapaGlossario extends Portal{
13
14
15 private SegmentoCategoriaDao segmentoCategoriaDao = null;
16
17 private List listSegmentoCategorias;
18
19 private String segmentoCategoriaSelecionada = "";
20
21
22
23
24
25
26
27
28
29
30
31 public CapaGlossario(UsuarioUsu usuario, HttpServletRequest request) throws ECARException {
32 super(request);
33
34 this.segmentoCategoriaDao= new SegmentoCategoriaDao(null);
35
36 this.carregarListaSegmentoGlossario(usuario);
37
38 }
39
40
41
42
43
44
45
46
47
48 private SegmentoCategoriaDao getSegmentoCategoriaDao() {
49 return this.segmentoCategoriaDao;
50 }
51
52
53
54
55
56
57
58
59
60
61 private void carregarListaSegmentoGlossario(UsuarioUsu usuario) throws ECARException {
62
63 this.setListSegmentoCategorias(this.getSegmentoCategoriaDao().getSegmentoCategoriasGlossarioVinculadasAoUsuario(usuario));
64
65 }
66
67
68
69
70
71
72
73
74
75 public List getListSegmentoCategorias() {
76 return listSegmentoCategorias;
77 }
78
79
80
81
82
83
84
85
86
87 private void setListSegmentoCategorias(List listSegmentoCategorias) {
88 this.listSegmentoCategorias = listSegmentoCategorias;
89 }
90
91
92
93
94
95
96
97
98
99 public String getSegmentoCategoriaSelecionada() {
100 return segmentoCategoriaSelecionada;
101 }
102
103
104
105
106
107
108
109
110
111 public void setSegmentoCategoriaSelecionada(String segmentoCategoriaSelecionada) {
112 this.segmentoCategoriaSelecionada = segmentoCategoriaSelecionada;
113 }
114
115
116
117 }