60 |
jpm |
1 |
package org.tela_botanica.client;
|
|
|
2 |
|
898 |
gduche |
3 |
import java.util.HashMap;
|
237 |
aurelien |
4 |
import java.util.Iterator;
|
|
|
5 |
import java.util.List;
|
|
|
6 |
|
1329 |
cyprien |
7 |
import org.tela_botanica.client.configuration.Configuration;
|
60 |
jpm |
8 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
64 |
jpm |
9 |
import org.tela_botanica.client.modeles.Utilisateur;
|
69 |
jpm |
10 |
import org.tela_botanica.client.modeles.UtilisateurAsyncDao;
|
91 |
jpm |
11 |
import org.tela_botanica.client.modeles.ValeurListeAsyncDao;
|
935 |
jpm |
12 |
import org.tela_botanica.client.modeles.collection.Collection;
|
989 |
jpm |
13 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaire;
|
|
|
14 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaireAsyncDao;
|
935 |
jpm |
15 |
import org.tela_botanica.client.modeles.collection.CollectionAPersonne;
|
|
|
16 |
import org.tela_botanica.client.modeles.collection.CollectionAPersonneAsyncDao;
|
|
|
17 |
import org.tela_botanica.client.modeles.collection.CollectionAPublication;
|
|
|
18 |
import org.tela_botanica.client.modeles.collection.CollectionAPublicationAsyncDao;
|
|
|
19 |
import org.tela_botanica.client.modeles.collection.CollectionAsyncDao;
|
985 |
jpm |
20 |
import org.tela_botanica.client.modeles.commentaire.Commentaire;
|
|
|
21 |
import org.tela_botanica.client.modeles.commentaire.CommentaireAsyncDao;
|
935 |
jpm |
22 |
import org.tela_botanica.client.modeles.personne.Personne;
|
|
|
23 |
import org.tela_botanica.client.modeles.personne.PersonneAsyncDao;
|
|
|
24 |
import org.tela_botanica.client.modeles.projet.Projet;
|
|
|
25 |
import org.tela_botanica.client.modeles.projet.ProjetAsyncDao;
|
|
|
26 |
import org.tela_botanica.client.modeles.publication.Publication;
|
|
|
27 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonne;
|
|
|
28 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonneAsyncDao;
|
|
|
29 |
import org.tela_botanica.client.modeles.publication.PublicationAsyncDao;
|
|
|
30 |
import org.tela_botanica.client.modeles.structure.Structure;
|
|
|
31 |
import org.tela_botanica.client.modeles.structure.StructureAPersonne;
|
|
|
32 |
import org.tela_botanica.client.modeles.structure.StructureAPersonneAsyncDao;
|
|
|
33 |
import org.tela_botanica.client.modeles.structure.StructureAsyncDao;
|
|
|
34 |
import org.tela_botanica.client.modeles.structure.StructureConservation;
|
|
|
35 |
import org.tela_botanica.client.modeles.structure.StructureValorisation;
|
1323 |
gduche |
36 |
import org.tela_botanica.client.synchronisation.Sequenceur;
|
1227 |
cyprien |
37 |
import org.tela_botanica.client.util.Debug;
|
60 |
jpm |
38 |
|
|
|
39 |
import com.extjs.gxt.ui.client.Registry;
|
673 |
aurelien |
40 |
import com.google.gwt.core.client.GWT;
|
1323 |
gduche |
41 |
import com.google.gwt.user.client.Window;
|
60 |
jpm |
42 |
|
|
|
43 |
// TODO : le transformer en SINGLETON
|
277 |
jp_milcent |
44 |
public class Modele {
|
60 |
jpm |
45 |
|
|
|
46 |
public Modele() {
|
|
|
47 |
Registry.register(RegistreId.MODELE, this);
|
|
|
48 |
}
|
|
|
49 |
|
231 |
jp_milcent |
50 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
51 |
// GESTION DES VALEURS ET LISTES
|
|
|
52 |
//+----------------------------------------------------------------------------------------------------------------+
|
1323 |
gduche |
53 |
public void obtenirListeValeurs(Rafraichissable vue, Integer id, Integer seqId) {
|
|
|
54 |
if (vue instanceof Sequenceur) {
|
|
|
55 |
vue = (Sequenceur) vue;
|
|
|
56 |
}
|
277 |
jp_milcent |
57 |
ValeurListeAsyncDao lsDao = new ValeurListeAsyncDao(vue);
|
1323 |
gduche |
58 |
lsDao.obtenirListe(id, seqId);
|
91 |
jpm |
59 |
}
|
1292 |
cyprien |
60 |
|
1323 |
gduche |
61 |
public void obtenirListeValeurs(Rafraichissable vue, String type, int id, Integer seqId) {
|
1292 |
cyprien |
62 |
ValeurListeAsyncDao lsDao = new ValeurListeAsyncDao(vue);
|
1323 |
gduche |
63 |
lsDao.obtenirListe(type, String.valueOf(id), seqId);
|
1292 |
cyprien |
64 |
}
|
91 |
jpm |
65 |
|
1323 |
gduche |
66 |
public void obtenirListeValeurs(Rafraichissable vue, Integer listId, boolean pagination, String recherche, int start, int nbElements, Integer seqId) {
|
1292 |
cyprien |
67 |
ValeurListeAsyncDao lsDao = new ValeurListeAsyncDao(vue);
|
1323 |
gduche |
68 |
lsDao.obtenirListe(listId, pagination, recherche, start, nbElements, seqId);
|
1292 |
cyprien |
69 |
}
|
1323 |
gduche |
70 |
|
|
|
71 |
public void obtenirListeValeurs(Rafraichissable vue, String type, String id, Integer seqId) {
|
|
|
72 |
ValeurListeAsyncDao lsDao = new ValeurListeAsyncDao(vue);
|
|
|
73 |
lsDao.obtenirListe(type, String.valueOf(id), seqId);
|
|
|
74 |
}
|
289 |
gduche |
75 |
|
297 |
gduche |
76 |
public void obtenirListeRegion(Rafraichissable vue, Integer id, String region) {
|
|
|
77 |
ValeurListeAsyncDao lsDao = new ValeurListeAsyncDao(vue);
|
1323 |
gduche |
78 |
lsDao.selectionner("abv", id, region, null, null);
|
297 |
gduche |
79 |
}
|
|
|
80 |
|
1323 |
gduche |
81 |
public void obtenirValeur(Rafraichissable vue, String type, Integer id, String identifiant, Integer seqId) {
|
297 |
gduche |
82 |
ValeurListeAsyncDao lsDao = new ValeurListeAsyncDao(vue);
|
1323 |
gduche |
83 |
lsDao.selectionner(type, id, null, identifiant, seqId);
|
289 |
gduche |
84 |
}
|
|
|
85 |
|
231 |
jp_milcent |
86 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
87 |
// GESTION DES UTILISATEURS
|
|
|
88 |
//+----------------------------------------------------------------------------------------------------------------+
|
237 |
aurelien |
89 |
|
277 |
jp_milcent |
90 |
public void connecterUtilisateur(Rafraichissable vue, String login, String mdp) {
|
|
|
91 |
Utilisateur utilisateur = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
65 |
jpm |
92 |
utilisateur.setLogin(login);
|
|
|
93 |
utilisateur.setMotDePasse(mdp);
|
277 |
jp_milcent |
94 |
UtilisateurAsyncDao uDao = new UtilisateurAsyncDao(vue);
|
65 |
jpm |
95 |
uDao.connecterUtilisateur();
|
64 |
jpm |
96 |
}
|
|
|
97 |
|
277 |
jp_milcent |
98 |
public void deconnecterUtilisateur(Rafraichissable vue) {
|
|
|
99 |
UtilisateurAsyncDao uDao = new UtilisateurAsyncDao(vue);
|
65 |
jpm |
100 |
uDao.deconnecterUtilisateur();
|
64 |
jpm |
101 |
}
|
898 |
gduche |
102 |
|
|
|
103 |
public void accepterLicence(Rafraichissable vue) {
|
|
|
104 |
UtilisateurAsyncDao uDao = new UtilisateurAsyncDao(vue);
|
|
|
105 |
uDao.accepterLicence();
|
453 |
jp_milcent |
106 |
|
898 |
gduche |
107 |
}
|
912 |
jpm |
108 |
|
|
|
109 |
public void modifierUtilisateur(Rafraichissable vueARafraichir, Utilisateur utilisateur) {
|
|
|
110 |
PersonneAsyncDao pAdao = new PersonneAsyncDao(vueARafraichir);
|
898 |
gduche |
111 |
|
912 |
jpm |
112 |
Personne personne = new Personne();
|
|
|
113 |
personne.setId(utilisateur.getId());
|
|
|
114 |
personne.setPrenom(utilisateur.getPrenom());
|
|
|
115 |
personne.setNom(utilisateur.getNom());
|
|
|
116 |
personne.setNomComplet(utilisateur.getNomComplet());
|
|
|
117 |
personne.setParametre(utilisateur.getParametre());
|
|
|
118 |
|
|
|
119 |
pAdao.modifier(personne);
|
|
|
120 |
}
|
|
|
121 |
|
453 |
jp_milcent |
122 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
123 |
// GESTION DES PROJETS
|
|
|
124 |
//+----------------------------------------------------------------------------------------------------------------+
|
231 |
jp_milcent |
125 |
|
1323 |
gduche |
126 |
public void selectionnerProjet(Rafraichissable vueARafraichir, String projetId, String nom, int start, int nbElements, Integer seqId) {
|
901 |
jpm |
127 |
ProjetAsyncDao pADAO = new ProjetAsyncDao(vueARafraichir);
|
1329 |
cyprien |
128 |
pADAO.selectionner(false, projetId, nom, start, nbElements, seqId);
|
901 |
jpm |
129 |
}
|
1329 |
cyprien |
130 |
|
|
|
131 |
public void selectionnerProjet(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Integer seqId) {
|
|
|
132 |
ProjetAsyncDao pADAO = new ProjetAsyncDao(vueARafraichir);
|
|
|
133 |
pADAO.selectionner(true, null, recherche, start, nbElements, seqId);
|
|
|
134 |
}
|
453 |
jp_milcent |
135 |
|
901 |
jpm |
136 |
public void ajouterProjet(Rafraichissable vueARafraichir, Projet projetCollecte) {
|
|
|
137 |
ProjetAsyncDao pADAO = new ProjetAsyncDao(vueARafraichir);
|
|
|
138 |
pADAO.ajouter(projetCollecte);
|
|
|
139 |
}
|
|
|
140 |
|
|
|
141 |
public void modifierProjet(Rafraichissable vueARafraichir, Projet projetCollecte) {
|
|
|
142 |
ProjetAsyncDao pADAO = new ProjetAsyncDao(vueARafraichir);
|
|
|
143 |
pADAO.modifier(projetCollecte);
|
|
|
144 |
}
|
|
|
145 |
|
231 |
jp_milcent |
146 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
147 |
// GESTION DES STRUCTURES
|
|
|
148 |
//+----------------------------------------------------------------------------------------------------------------+
|
64 |
jpm |
149 |
|
1323 |
gduche |
150 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String projetId, String structureId, String nomStructure, int start, int nbElements, Integer seqId) {
|
209 |
jp_milcent |
151 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
769 |
jpm |
152 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
1329 |
cyprien |
153 |
sDao.selectionner(false, projetId, structureId, nomStructure, start, nbElements, seqId);
|
156 |
jp_milcent |
154 |
}
|
|
|
155 |
|
1329 |
cyprien |
156 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Integer seqId) {
|
|
|
157 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
|
|
158 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
|
|
159 |
sDao.selectionner(true, null, null, recherche, start, nbElements, seqId);
|
|
|
160 |
}
|
|
|
161 |
|
119 |
jpm |
162 |
/** Lance la creation d'une Structure
|
468 |
jp_milcent |
163 |
* @param vueARafraichir la vue demandant a être rafraichie
|
119 |
jpm |
164 |
* @param structure les données de la structure
|
|
|
165 |
*/
|
769 |
jpm |
166 |
public void ajouterStructure(Rafraichissable vueARafraichir, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
167 |
StructureAsyncDao structureDao = new StructureAsyncDao(vueARafraichir);
|
|
|
168 |
structureDao.ajouter(structure, conservation, valorisation);
|
119 |
jpm |
169 |
}
|
135 |
jpm |
170 |
|
769 |
jpm |
171 |
public void supprimerStructure(Rafraichissable vueARafraichir, String idStr) {
|
|
|
172 |
StructureAsyncDao structureDao = new StructureAsyncDao(vueARafraichir);
|
|
|
173 |
structureDao.supprimer(idStr);
|
135 |
jpm |
174 |
}
|
119 |
jpm |
175 |
|
769 |
jpm |
176 |
public void modifierStructure(Rafraichissable vueARafraichir, String structureId, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
177 |
StructureAsyncDao structureDao = new StructureAsyncDao(vueARafraichir);
|
|
|
178 |
structureDao.modifier(structureId, structure, conservation, valorisation);
|
156 |
jp_milcent |
179 |
}
|
231 |
jp_milcent |
180 |
|
265 |
jp_milcent |
181 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
182 |
// GESTION de la relation STRUCTURE A PERSONNE
|
|
|
183 |
|
1323 |
gduche |
184 |
public void selectionnerStructureAPersonne(Rafraichissable vueARafraichir, String structureId, String roleId, Integer seqId) {
|
265 |
jp_milcent |
185 |
// Gestion des données de la table coel_structure_a_personne
|
|
|
186 |
if (structureId != null && roleId != null) {
|
761 |
jpm |
187 |
StructureAPersonneAsyncDao sapDao = new StructureAPersonneAsyncDao(vueARafraichir);
|
1323 |
gduche |
188 |
sapDao.selectionner(structureId, roleId, seqId);
|
265 |
jp_milcent |
189 |
}
|
|
|
190 |
}
|
|
|
191 |
|
767 |
jpm |
192 |
public void modifierStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonne personnel) {
|
761 |
jpm |
193 |
StructureAPersonneAsyncDao structureAPersonneDao = new StructureAPersonneAsyncDao(vueARafraichir);
|
767 |
jpm |
194 |
structureAPersonneDao.modifier(personnel);
|
231 |
jp_milcent |
195 |
}
|
156 |
jp_milcent |
196 |
|
767 |
jpm |
197 |
public void ajouterStructureAPersonne(Rafraichissable vueARafraichir, String structureId, StructureAPersonne personnel) {
|
761 |
jpm |
198 |
StructureAPersonneAsyncDao structureAPersonneDao = new StructureAPersonneAsyncDao(vueARafraichir);
|
767 |
jpm |
199 |
structureAPersonneDao.ajouter(structureId, personnel);
|
231 |
jp_milcent |
200 |
}
|
|
|
201 |
|
767 |
jpm |
202 |
public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, String personnelId) {
|
761 |
jpm |
203 |
StructureAPersonneAsyncDao structureAPersonneDao = new StructureAPersonneAsyncDao(vueARafraichir);
|
767 |
jpm |
204 |
structureAPersonneDao.supprimer(personnelId);
|
231 |
jp_milcent |
205 |
}
|
453 |
jp_milcent |
206 |
|
231 |
jp_milcent |
207 |
//+----------------------------------------------------------------------------------------------------------------+
|
453 |
jp_milcent |
208 |
// GESTION DES COLLECTIONS
|
231 |
jp_milcent |
209 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
210 |
|
1041 |
gduche |
211 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String projetId, String collectionId, String nom, int start, int nbElements) {
|
872 |
jpm |
212 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
1329 |
cyprien |
213 |
cDao.selectionner(false, projetId, collectionId, nom, start, nbElements);
|
143 |
gduche |
214 |
}
|
453 |
jp_milcent |
215 |
|
1329 |
cyprien |
216 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String recherche, int start, int nbElements) {
|
|
|
217 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
|
|
218 |
cDao.selectionner(true, null, null, recherche, start, nbElements);
|
|
|
219 |
}
|
|
|
220 |
|
968 |
jpm |
221 |
public void ajouterCollection(Rafraichissable vueARafraichir, Collection collection) {
|
|
|
222 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
|
|
223 |
cDao.ajouter(collection);
|
453 |
jp_milcent |
224 |
}
|
224 |
aurelien |
225 |
|
872 |
jpm |
226 |
public void modifierCollection(Rafraichissable vueARafraichir, Collection collection) {
|
|
|
227 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
|
|
228 |
cDao.modifier(collection);
|
453 |
jp_milcent |
229 |
}
|
|
|
230 |
|
968 |
jpm |
231 |
public void supprimerCollection(Rafraichissable vueARafraichir, String identifiantsCollectionSepareParVirgule) {
|
|
|
232 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
|
|
233 |
cDao.supprimer(identifiantsCollectionSepareParVirgule);
|
453 |
jp_milcent |
234 |
}
|
|
|
235 |
|
231 |
jp_milcent |
236 |
//+----------------------------------------------------------------------------------------------------------------+
|
875 |
jpm |
237 |
// GESTION de la relation COLLECTION A PERSONNE
|
|
|
238 |
|
|
|
239 |
public void selectionnerCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, String roleId) {
|
883 |
jpm |
240 |
CollectionAPersonneAsyncDao sapDao = new CollectionAPersonneAsyncDao(vueARafraichir);
|
|
|
241 |
sapDao.selectionner(collectionId, roleId);
|
875 |
jpm |
242 |
}
|
|
|
243 |
|
|
|
244 |
public void modifierCollectionAPersonne(Rafraichissable vueARafraichir, CollectionAPersonne collectionAPersonne) {
|
|
|
245 |
CollectionAPersonneAsyncDao collectionAPersonneDao = new CollectionAPersonneAsyncDao(vueARafraichir);
|
|
|
246 |
collectionAPersonneDao.modifier(collectionAPersonne);
|
|
|
247 |
}
|
|
|
248 |
|
|
|
249 |
public void ajouterCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, CollectionAPersonne collectionAPersonne) {
|
|
|
250 |
CollectionAPersonneAsyncDao collectionAPersonneDao = new CollectionAPersonneAsyncDao(vueARafraichir);
|
|
|
251 |
collectionAPersonneDao.ajouter(collectionId, collectionAPersonne);
|
|
|
252 |
}
|
|
|
253 |
|
|
|
254 |
public void supprimerCollectionAPersonne(Rafraichissable vueARafraichir, String collectionAPersonneId) {
|
|
|
255 |
CollectionAPersonneAsyncDao collectionAPersonneDao = new CollectionAPersonneAsyncDao(vueARafraichir);
|
|
|
256 |
collectionAPersonneDao.supprimer(collectionAPersonneId);
|
|
|
257 |
}
|
|
|
258 |
|
|
|
259 |
//+----------------------------------------------------------------------------------------------------------------+
|
883 |
jpm |
260 |
// GESTION de la relation COLLECTION A PUBLICATION
|
|
|
261 |
|
|
|
262 |
public void selectionnerCollectionAPublication(Rafraichissable vueARafraichir, String collectionId) {
|
|
|
263 |
CollectionAPublicationAsyncDao capDao = new CollectionAPublicationAsyncDao(vueARafraichir);
|
|
|
264 |
capDao.selectionner(collectionId);
|
|
|
265 |
}
|
|
|
266 |
|
|
|
267 |
public void modifierCollectionAPublication(Rafraichissable vueARafraichir, CollectionAPublication collectionAPublication) {
|
|
|
268 |
CollectionAPublicationAsyncDao collectionAPublicationDao = new CollectionAPublicationAsyncDao(vueARafraichir);
|
|
|
269 |
collectionAPublicationDao.modifier(collectionAPublication);
|
|
|
270 |
}
|
|
|
271 |
|
|
|
272 |
public void ajouterCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, CollectionAPublication collectionAPublication) {
|
|
|
273 |
CollectionAPublicationAsyncDao collectionAPublicationDao = new CollectionAPublicationAsyncDao(vueARafraichir);
|
|
|
274 |
collectionAPublicationDao.ajouter(collectionId, collectionAPublication);
|
|
|
275 |
}
|
|
|
276 |
|
|
|
277 |
public void supprimerCollectionAPublication(Rafraichissable vueARafraichir, String collectionAPublicationId) {
|
|
|
278 |
CollectionAPublicationAsyncDao collectionAPublicationDao = new CollectionAPublicationAsyncDao(vueARafraichir);
|
|
|
279 |
collectionAPublicationDao.supprimer(collectionAPublicationId);
|
|
|
280 |
}
|
989 |
jpm |
281 |
|
|
|
282 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
283 |
// GESTION de la relation COLLECTION A COMMENTAIRE
|
883 |
jpm |
284 |
|
997 |
jpm |
285 |
public void selectionnerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId) {
|
989 |
jpm |
286 |
CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
|
997 |
jpm |
287 |
cacDao.selectionner(collectionId);
|
989 |
jpm |
288 |
}
|
|
|
289 |
|
|
|
290 |
public void modifierCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaire collectionACommentaire) {
|
|
|
291 |
CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
|
|
|
292 |
cacDao.modifier(collectionACommentaire);
|
|
|
293 |
}
|
|
|
294 |
|
997 |
jpm |
295 |
public void ajouterCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, CollectionACommentaire collectionACommentaire) {
|
989 |
jpm |
296 |
CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
|
997 |
jpm |
297 |
cacDao.ajouter(collectionId, collectionACommentaire);
|
989 |
jpm |
298 |
}
|
|
|
299 |
|
|
|
300 |
public void supprimerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionACommentaireId, String mode) {
|
|
|
301 |
CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
|
|
|
302 |
cacDao.supprimer(collectionACommentaireId, mode);
|
|
|
303 |
}
|
|
|
304 |
|
883 |
jpm |
305 |
//+----------------------------------------------------------------------------------------------------------------+
|
231 |
jp_milcent |
306 |
// GESTION DES PERSONNES
|
|
|
307 |
//+----------------------------------------------------------------------------------------------------------------+
|
1323 |
gduche |
308 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String personneId, String projetId, String nomComplet, int start, int nbElements) {
|
|
|
309 |
selectionnerPersonne(vueARafraichir, personneId, projetId, nomComplet, start, nbElements, null);
|
|
|
310 |
}
|
231 |
jp_milcent |
311 |
|
1323 |
gduche |
312 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String personneId, String projetId, String nomComplet, int start, int nbElements, Integer seqId) {
|
468 |
jp_milcent |
313 |
PersonneAsyncDao pDao = new PersonneAsyncDao(vueARafraichir);
|
1329 |
cyprien |
314 |
pDao.selectionner(false, personneId, projetId, nomComplet, start, nbElements, seqId);
|
244 |
jp_milcent |
315 |
}
|
1329 |
cyprien |
316 |
|
|
|
317 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Integer seqId) {
|
|
|
318 |
PersonneAsyncDao pDao = new PersonneAsyncDao(vueARafraichir);
|
|
|
319 |
pDao.selectionner(true, null, null, recherche, start, nbElements, seqId);
|
|
|
320 |
}
|
277 |
jp_milcent |
321 |
|
772 |
jpm |
322 |
public void supprimerPersonne(Rafraichissable vueARafraichir, String idPersonneSepareParVirgule) {
|
468 |
jp_milcent |
323 |
PersonneAsyncDao personneDao = new PersonneAsyncDao(vueARafraichir);
|
772 |
jpm |
324 |
personneDao.supprimer(idPersonneSepareParVirgule);
|
277 |
jp_milcent |
325 |
|
|
|
326 |
}
|
244 |
jp_milcent |
327 |
|
430 |
gduche |
328 |
public void ajouterPersonne(Rafraichissable vue, Personne personne) {
|
388 |
gduche |
329 |
PersonneAsyncDao personneDao = new PersonneAsyncDao(vue);
|
748 |
jpm |
330 |
personneDao.ajouter(personne);
|
388 |
gduche |
331 |
}
|
430 |
gduche |
332 |
|
468 |
jp_milcent |
333 |
public void modifierPersonne(Rafraichissable vueARafraichir, Personne personne) {
|
|
|
334 |
PersonneAsyncDao personneDao = new PersonneAsyncDao(vueARafraichir);
|
748 |
jpm |
335 |
personneDao.modifier(personne);
|
430 |
gduche |
336 |
}
|
453 |
jp_milcent |
337 |
|
231 |
jp_milcent |
338 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
339 |
// GESTION DES PUBLICATIONS
|
|
|
340 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
341 |
|
1323 |
gduche |
342 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String publicationId, String projetId, String nomComplet, int nbElements, int pageCourante, Integer seqId) {
|
468 |
jp_milcent |
343 |
PublicationAsyncDao lsDao = new PublicationAsyncDao(vueARafraichir);
|
1323 |
gduche |
344 |
lsDao.selectionner(publicationId, projetId, nomComplet, nbElements, pageCourante, seqId);
|
231 |
jp_milcent |
345 |
}
|
|
|
346 |
|
1323 |
gduche |
347 |
public void modifierPublication(Rafraichissable vueRafraichir, Publication publication, Integer seqId) {
|
468 |
jp_milcent |
348 |
PublicationAsyncDao pDao = new PublicationAsyncDao(vueRafraichir);
|
1323 |
gduche |
349 |
pDao.modifier(publication, seqId);
|
228 |
aurelien |
350 |
}
|
|
|
351 |
|
1323 |
gduche |
352 |
public void ajouterPublication(Rafraichissable vueARafraichir, Publication publication, Integer seqId) {
|
468 |
jp_milcent |
353 |
PublicationAsyncDao pDao = new PublicationAsyncDao(vueARafraichir);
|
1323 |
gduche |
354 |
pDao.ajouter(publication, seqId);
|
228 |
aurelien |
355 |
}
|
231 |
jp_milcent |
356 |
|
1227 |
cyprien |
357 |
public void supprimerPublication(Rafraichissable vueARafraichir, String idPublicationSeparesParVirgule) {
|
468 |
jp_milcent |
358 |
PublicationAsyncDao pDao = new PublicationAsyncDao(vueARafraichir);
|
919 |
jpm |
359 |
pDao.supprimer(idPublicationSeparesParVirgule);
|
237 |
aurelien |
360 |
}
|
244 |
jp_milcent |
361 |
|
822 |
jpm |
362 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
363 |
// GESTION de la relation PUBLICATION A PERSONNE
|
|
|
364 |
|
1323 |
gduche |
365 |
public void selectionPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId, Integer seqId) {
|
1262 |
cyprien |
366 |
PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
1323 |
gduche |
367 |
paDao.selectionner(publicationId, personnesId, roleId, seqId);
|
741 |
aurelien |
368 |
}
|
822 |
jpm |
369 |
|
1323 |
gduche |
370 |
public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId, Integer seqId) {
|
741 |
aurelien |
371 |
PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
1323 |
gduche |
372 |
paDao.ajouter(publicationId, personnesId, roleId, seqId);
|
741 |
aurelien |
373 |
}
|
|
|
374 |
|
1227 |
cyprien |
375 |
public void supprimerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationsAPersonneId) {
|
901 |
jpm |
376 |
PublicationAPersonneAsyncDao publicationAPersonneDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
|
|
377 |
publicationAPersonneDao.supprimer(publicationsAPersonneId);
|
750 |
aurelien |
378 |
}
|
|
|
379 |
|
902 |
aurelien |
380 |
public void supprimerProjet(Rafraichissable vueARafraichir,
|
|
|
381 |
List<Projet> projetListe) {
|
|
|
382 |
|
|
|
383 |
String projetsId = "";
|
|
|
384 |
for(Iterator<Projet> it = projetListe.iterator(); it.hasNext();) {
|
|
|
385 |
Projet proj = it.next();
|
|
|
386 |
projetsId += proj.getId();
|
|
|
387 |
if(it.hasNext()) {
|
|
|
388 |
projetsId += ",";
|
|
|
389 |
}
|
|
|
390 |
}
|
|
|
391 |
ProjetAsyncDao pADAO = new ProjetAsyncDao(vueARafraichir);
|
|
|
392 |
pADAO.supprimer(projetsId);
|
|
|
393 |
}
|
985 |
jpm |
394 |
|
|
|
395 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
396 |
// GESTION DES COMMENTAIRES
|
|
|
397 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
398 |
|
1048 |
gduche |
399 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, String projetId, String titre, int pageCourante, int nbElements) {
|
985 |
jpm |
400 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
1048 |
gduche |
401 |
cDao.selectionner(commentaireId, projetId, titre, pageCourante, nbElements);
|
985 |
jpm |
402 |
}
|
|
|
403 |
|
|
|
404 |
public void modifierCommentaire(Rafraichissable vueRafraichir, Commentaire commentaire) {
|
|
|
405 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueRafraichir);
|
|
|
406 |
cDao.modifier(commentaire);
|
|
|
407 |
}
|
902 |
aurelien |
408 |
|
985 |
jpm |
409 |
public void ajouterCommentaire(Rafraichissable vueARafraichir, Commentaire commentaire) {
|
|
|
410 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
|
|
411 |
cDao.ajouter(commentaire);
|
|
|
412 |
}
|
|
|
413 |
|
|
|
414 |
public void supprimerCommentaire(Rafraichissable vueARafraichir, String idCommentaireSeparesParVirgule) {
|
|
|
415 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
|
|
416 |
cDao.supprimer(idCommentaireSeparesParVirgule);
|
|
|
417 |
}
|
60 |
jpm |
418 |
}
|