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