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 |
|
1691 |
raphael |
147 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String projetId, String structureId, String nomStructure, int start, int nbElements, Integer seqId, boolean searchCity) {
|
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);
|
1691 |
raphael |
150 |
sDao.selectionner(false, projetId, structureId, nomStructure, null, start, nbElements, seqId, searchCity);
|
156 |
jp_milcent |
151 |
}
|
|
|
152 |
|
1691 |
raphael |
153 |
public void selectionnerStructureAvecPaginationProgressive(Rafraichissable vueARafraichir, String projetId, String structureId, String nomStructure, String formatRetour, int start, int nbElements, Integer seqId, boolean searchCity) {
|
1526 |
jpm |
154 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
|
|
155 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
1691 |
raphael |
156 |
sDao.selectionner(true, projetId, structureId, nomStructure, formatRetour, start, nbElements, seqId, searchCity);
|
1526 |
jpm |
157 |
}
|
|
|
158 |
|
1691 |
raphael |
159 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Integer seqId, boolean searchCity) {
|
1329 |
cyprien |
160 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
|
|
161 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
1691 |
raphael |
162 |
sDao.selectionner(true, null, null, recherche, null, start, nbElements, seqId, searchCity);
|
1329 |
cyprien |
163 |
}
|
|
|
164 |
|
119 |
jpm |
165 |
/** Lance la creation d'une Structure
|
468 |
jp_milcent |
166 |
* @param vueARafraichir la vue demandant a être rafraichie
|
119 |
jpm |
167 |
* @param structure les données de la structure
|
|
|
168 |
*/
|
769 |
jpm |
169 |
public void ajouterStructure(Rafraichissable vueARafraichir, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
170 |
StructureAsyncDao structureDao = new StructureAsyncDao(vueARafraichir);
|
|
|
171 |
structureDao.ajouter(structure, conservation, valorisation);
|
119 |
jpm |
172 |
}
|
135 |
jpm |
173 |
|
769 |
jpm |
174 |
public void supprimerStructure(Rafraichissable vueARafraichir, String idStr) {
|
|
|
175 |
StructureAsyncDao structureDao = new StructureAsyncDao(vueARafraichir);
|
|
|
176 |
structureDao.supprimer(idStr);
|
135 |
jpm |
177 |
}
|
119 |
jpm |
178 |
|
769 |
jpm |
179 |
public void modifierStructure(Rafraichissable vueARafraichir, String structureId, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
180 |
StructureAsyncDao structureDao = new StructureAsyncDao(vueARafraichir);
|
|
|
181 |
structureDao.modifier(structureId, structure, conservation, valorisation);
|
156 |
jp_milcent |
182 |
}
|
231 |
jp_milcent |
183 |
|
265 |
jp_milcent |
184 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
185 |
// GESTION de la relation STRUCTURE A PERSONNE
|
|
|
186 |
|
1323 |
gduche |
187 |
public void selectionnerStructureAPersonne(Rafraichissable vueARafraichir, String structureId, String roleId, Integer seqId) {
|
265 |
jp_milcent |
188 |
// Gestion des données de la table coel_structure_a_personne
|
|
|
189 |
if (structureId != null && roleId != null) {
|
761 |
jpm |
190 |
StructureAPersonneAsyncDao sapDao = new StructureAPersonneAsyncDao(vueARafraichir);
|
1468 |
jpm |
191 |
sapDao.selectionner(false, structureId, roleId, null, 0, -1, seqId);
|
265 |
jp_milcent |
192 |
}
|
|
|
193 |
}
|
|
|
194 |
|
1468 |
jpm |
195 |
public void selectionnerStructureAPersonne(Rafraichissable vueARafraichir, String structureId, String roleId, String recherche, int start, int nbElements, Integer seqId) {
|
|
|
196 |
StructureAPersonneAsyncDao sapDao = new StructureAPersonneAsyncDao(vueARafraichir);
|
|
|
197 |
sapDao.selectionner(true, structureId, roleId, recherche, start, nbElements, seqId);
|
|
|
198 |
}
|
|
|
199 |
|
767 |
jpm |
200 |
public void modifierStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonne personnel) {
|
761 |
jpm |
201 |
StructureAPersonneAsyncDao structureAPersonneDao = new StructureAPersonneAsyncDao(vueARafraichir);
|
767 |
jpm |
202 |
structureAPersonneDao.modifier(personnel);
|
231 |
jp_milcent |
203 |
}
|
156 |
jp_milcent |
204 |
|
767 |
jpm |
205 |
public void ajouterStructureAPersonne(Rafraichissable vueARafraichir, String structureId, StructureAPersonne personnel) {
|
761 |
jpm |
206 |
StructureAPersonneAsyncDao structureAPersonneDao = new StructureAPersonneAsyncDao(vueARafraichir);
|
767 |
jpm |
207 |
structureAPersonneDao.ajouter(structureId, personnel);
|
231 |
jp_milcent |
208 |
}
|
|
|
209 |
|
767 |
jpm |
210 |
public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, String personnelId) {
|
761 |
jpm |
211 |
StructureAPersonneAsyncDao structureAPersonneDao = new StructureAPersonneAsyncDao(vueARafraichir);
|
767 |
jpm |
212 |
structureAPersonneDao.supprimer(personnelId);
|
231 |
jp_milcent |
213 |
}
|
453 |
jp_milcent |
214 |
|
231 |
jp_milcent |
215 |
//+----------------------------------------------------------------------------------------------------------------+
|
453 |
jp_milcent |
216 |
// GESTION DES COLLECTIONS
|
231 |
jp_milcent |
217 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
218 |
|
1367 |
cyprien |
219 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String projetId, String collectionId, String nom, int start, int nbElements, Integer seqId) {
|
872 |
jpm |
220 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
1367 |
cyprien |
221 |
cDao.selectionner(false, projetId, collectionId, nom, start, nbElements, seqId);
|
143 |
gduche |
222 |
}
|
453 |
jp_milcent |
223 |
|
1367 |
cyprien |
224 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Integer seqId) {
|
1329 |
cyprien |
225 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
1367 |
cyprien |
226 |
cDao.selectionner(true, null, null, recherche, start, nbElements, seqId);
|
1329 |
cyprien |
227 |
}
|
|
|
228 |
|
968 |
jpm |
229 |
public void ajouterCollection(Rafraichissable vueARafraichir, Collection collection) {
|
|
|
230 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
|
|
231 |
cDao.ajouter(collection);
|
453 |
jp_milcent |
232 |
}
|
224 |
aurelien |
233 |
|
872 |
jpm |
234 |
public void modifierCollection(Rafraichissable vueARafraichir, Collection collection) {
|
|
|
235 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
|
|
236 |
cDao.modifier(collection);
|
453 |
jp_milcent |
237 |
}
|
|
|
238 |
|
968 |
jpm |
239 |
public void supprimerCollection(Rafraichissable vueARafraichir, String identifiantsCollectionSepareParVirgule) {
|
|
|
240 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
|
|
241 |
cDao.supprimer(identifiantsCollectionSepareParVirgule);
|
453 |
jp_milcent |
242 |
}
|
|
|
243 |
|
231 |
jp_milcent |
244 |
//+----------------------------------------------------------------------------------------------------------------+
|
875 |
jpm |
245 |
// GESTION de la relation COLLECTION A PERSONNE
|
|
|
246 |
|
1468 |
jpm |
247 |
public void selectionnerCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, String roleId, String recherche, int start, int nbElements, Integer seqId) {
|
|
|
248 |
CollectionAPersonneAsyncDao sapDao = new CollectionAPersonneAsyncDao(vueARafraichir);
|
|
|
249 |
sapDao.selectionner(true, collectionId, roleId, recherche, start, nbElements, seqId);
|
|
|
250 |
}
|
|
|
251 |
|
1367 |
cyprien |
252 |
public void selectionnerCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, String roleId, Integer seqId) {
|
883 |
jpm |
253 |
CollectionAPersonneAsyncDao sapDao = new CollectionAPersonneAsyncDao(vueARafraichir);
|
1468 |
jpm |
254 |
sapDao.selectionner(false, collectionId, roleId, null, 0, -1, seqId);
|
875 |
jpm |
255 |
}
|
|
|
256 |
|
|
|
257 |
public void modifierCollectionAPersonne(Rafraichissable vueARafraichir, CollectionAPersonne collectionAPersonne) {
|
|
|
258 |
CollectionAPersonneAsyncDao collectionAPersonneDao = new CollectionAPersonneAsyncDao(vueARafraichir);
|
|
|
259 |
collectionAPersonneDao.modifier(collectionAPersonne);
|
|
|
260 |
}
|
|
|
261 |
|
|
|
262 |
public void ajouterCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, CollectionAPersonne collectionAPersonne) {
|
|
|
263 |
CollectionAPersonneAsyncDao collectionAPersonneDao = new CollectionAPersonneAsyncDao(vueARafraichir);
|
|
|
264 |
collectionAPersonneDao.ajouter(collectionId, collectionAPersonne);
|
|
|
265 |
}
|
|
|
266 |
|
|
|
267 |
public void supprimerCollectionAPersonne(Rafraichissable vueARafraichir, String collectionAPersonneId) {
|
|
|
268 |
CollectionAPersonneAsyncDao collectionAPersonneDao = new CollectionAPersonneAsyncDao(vueARafraichir);
|
|
|
269 |
collectionAPersonneDao.supprimer(collectionAPersonneId);
|
|
|
270 |
}
|
|
|
271 |
|
|
|
272 |
//+----------------------------------------------------------------------------------------------------------------+
|
883 |
jpm |
273 |
// GESTION de la relation COLLECTION A PUBLICATION
|
1513 |
jpm |
274 |
|
|
|
275 |
public void selectionnerCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, String recherche, int start, int nbElements, Integer seqId) {
|
|
|
276 |
CollectionAPublicationAsyncDao capDao = new CollectionAPublicationAsyncDao(vueARafraichir);
|
|
|
277 |
capDao.selectionner(true, collectionId, recherche, start, nbElements, seqId);
|
|
|
278 |
}
|
883 |
jpm |
279 |
|
1367 |
cyprien |
280 |
public void selectionnerCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, Integer seqId) {
|
883 |
jpm |
281 |
CollectionAPublicationAsyncDao capDao = new CollectionAPublicationAsyncDao(vueARafraichir);
|
1513 |
jpm |
282 |
capDao.selectionner(false, collectionId, null, 0, -1, seqId);
|
883 |
jpm |
283 |
}
|
|
|
284 |
|
|
|
285 |
public void modifierCollectionAPublication(Rafraichissable vueARafraichir, CollectionAPublication collectionAPublication) {
|
|
|
286 |
CollectionAPublicationAsyncDao collectionAPublicationDao = new CollectionAPublicationAsyncDao(vueARafraichir);
|
|
|
287 |
collectionAPublicationDao.modifier(collectionAPublication);
|
|
|
288 |
}
|
|
|
289 |
|
|
|
290 |
public void ajouterCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, CollectionAPublication collectionAPublication) {
|
|
|
291 |
CollectionAPublicationAsyncDao collectionAPublicationDao = new CollectionAPublicationAsyncDao(vueARafraichir);
|
|
|
292 |
collectionAPublicationDao.ajouter(collectionId, collectionAPublication);
|
|
|
293 |
}
|
|
|
294 |
|
|
|
295 |
public void supprimerCollectionAPublication(Rafraichissable vueARafraichir, String collectionAPublicationId) {
|
|
|
296 |
CollectionAPublicationAsyncDao collectionAPublicationDao = new CollectionAPublicationAsyncDao(vueARafraichir);
|
|
|
297 |
collectionAPublicationDao.supprimer(collectionAPublicationId);
|
|
|
298 |
}
|
989 |
jpm |
299 |
|
|
|
300 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
301 |
// GESTION de la relation COLLECTION A COMMENTAIRE
|
883 |
jpm |
302 |
|
1367 |
cyprien |
303 |
public void selectionnerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, Integer seqId) {
|
989 |
jpm |
304 |
CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
|
1513 |
jpm |
305 |
cacDao.selectionner(false, collectionId, null, 0, -1, seqId);
|
989 |
jpm |
306 |
}
|
|
|
307 |
|
1513 |
jpm |
308 |
public void selectionnerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, String recherche, int start, int nbElements, Integer seqId) {
|
|
|
309 |
CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
|
|
|
310 |
cacDao.selectionner(true, collectionId, recherche, start, nbElements, seqId);
|
|
|
311 |
}
|
|
|
312 |
|
989 |
jpm |
313 |
public void modifierCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaire collectionACommentaire) {
|
|
|
314 |
CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
|
|
|
315 |
cacDao.modifier(collectionACommentaire);
|
|
|
316 |
}
|
|
|
317 |
|
997 |
jpm |
318 |
public void ajouterCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, CollectionACommentaire collectionACommentaire) {
|
989 |
jpm |
319 |
CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
|
997 |
jpm |
320 |
cacDao.ajouter(collectionId, collectionACommentaire);
|
989 |
jpm |
321 |
}
|
|
|
322 |
|
|
|
323 |
public void supprimerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionACommentaireId, String mode) {
|
|
|
324 |
CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
|
|
|
325 |
cacDao.supprimer(collectionACommentaireId, mode);
|
|
|
326 |
}
|
|
|
327 |
|
883 |
jpm |
328 |
//+----------------------------------------------------------------------------------------------------------------+
|
231 |
jp_milcent |
329 |
// GESTION DES PERSONNES
|
|
|
330 |
//+----------------------------------------------------------------------------------------------------------------+
|
1323 |
gduche |
331 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String personneId, String projetId, String nomComplet, int start, int nbElements) {
|
|
|
332 |
selectionnerPersonne(vueARafraichir, personneId, projetId, nomComplet, start, nbElements, null);
|
|
|
333 |
}
|
231 |
jp_milcent |
334 |
|
1323 |
gduche |
335 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String personneId, String projetId, String nomComplet, int start, int nbElements, Integer seqId) {
|
468 |
jp_milcent |
336 |
PersonneAsyncDao pDao = new PersonneAsyncDao(vueARafraichir);
|
1329 |
cyprien |
337 |
pDao.selectionner(false, personneId, projetId, nomComplet, start, nbElements, seqId);
|
244 |
jp_milcent |
338 |
}
|
1329 |
cyprien |
339 |
|
|
|
340 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Integer seqId) {
|
|
|
341 |
PersonneAsyncDao pDao = new PersonneAsyncDao(vueARafraichir);
|
|
|
342 |
pDao.selectionner(true, null, null, recherche, start, nbElements, seqId);
|
|
|
343 |
}
|
277 |
jp_milcent |
344 |
|
772 |
jpm |
345 |
public void supprimerPersonne(Rafraichissable vueARafraichir, String idPersonneSepareParVirgule) {
|
468 |
jp_milcent |
346 |
PersonneAsyncDao personneDao = new PersonneAsyncDao(vueARafraichir);
|
772 |
jpm |
347 |
personneDao.supprimer(idPersonneSepareParVirgule);
|
277 |
jp_milcent |
348 |
}
|
244 |
jp_milcent |
349 |
|
430 |
gduche |
350 |
public void ajouterPersonne(Rafraichissable vue, Personne personne) {
|
388 |
gduche |
351 |
PersonneAsyncDao personneDao = new PersonneAsyncDao(vue);
|
748 |
jpm |
352 |
personneDao.ajouter(personne);
|
388 |
gduche |
353 |
}
|
430 |
gduche |
354 |
|
468 |
jp_milcent |
355 |
public void modifierPersonne(Rafraichissable vueARafraichir, Personne personne) {
|
|
|
356 |
PersonneAsyncDao personneDao = new PersonneAsyncDao(vueARafraichir);
|
748 |
jpm |
357 |
personneDao.modifier(personne);
|
430 |
gduche |
358 |
}
|
1513 |
jpm |
359 |
|
231 |
jp_milcent |
360 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
361 |
// GESTION DES PUBLICATIONS
|
|
|
362 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
363 |
|
1513 |
jpm |
364 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String publicationId, String projetId, String nomComplet, int pageCourante, int nbElements, Integer seqId) {
|
468 |
jp_milcent |
365 |
PublicationAsyncDao lsDao = new PublicationAsyncDao(vueARafraichir);
|
1513 |
jpm |
366 |
lsDao.selectionner(false, publicationId, projetId, nomComplet, pageCourante, nbElements, seqId);
|
231 |
jp_milcent |
367 |
}
|
|
|
368 |
|
1513 |
jpm |
369 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Integer seqId) {
|
|
|
370 |
PublicationAsyncDao lsDao = new PublicationAsyncDao(vueARafraichir);
|
|
|
371 |
lsDao.selectionner(true, null, null, recherche, start, nbElements, seqId);
|
|
|
372 |
}
|
|
|
373 |
|
1323 |
gduche |
374 |
public void modifierPublication(Rafraichissable vueRafraichir, Publication publication, Integer seqId) {
|
468 |
jp_milcent |
375 |
PublicationAsyncDao pDao = new PublicationAsyncDao(vueRafraichir);
|
1323 |
gduche |
376 |
pDao.modifier(publication, seqId);
|
228 |
aurelien |
377 |
}
|
|
|
378 |
|
1323 |
gduche |
379 |
public void ajouterPublication(Rafraichissable vueARafraichir, Publication publication, Integer seqId) {
|
468 |
jp_milcent |
380 |
PublicationAsyncDao pDao = new PublicationAsyncDao(vueARafraichir);
|
1323 |
gduche |
381 |
pDao.ajouter(publication, seqId);
|
228 |
aurelien |
382 |
}
|
231 |
jp_milcent |
383 |
|
1227 |
cyprien |
384 |
public void supprimerPublication(Rafraichissable vueARafraichir, String idPublicationSeparesParVirgule) {
|
468 |
jp_milcent |
385 |
PublicationAsyncDao pDao = new PublicationAsyncDao(vueARafraichir);
|
1513 |
jpm |
386 |
pDao.supprimer(idPublicationSeparesParVirgule);
|
237 |
aurelien |
387 |
}
|
244 |
jp_milcent |
388 |
|
822 |
jpm |
389 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
390 |
// GESTION de la relation PUBLICATION A PERSONNE
|
|
|
391 |
|
1513 |
jpm |
392 |
public void selectionPersonnesAPublication(Rafraichissable vueARafraichir, String publicationId, String recherche, int start, int nbElements, Integer seqId) {
|
|
|
393 |
PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
|
|
394 |
paDao.selectionner(true, publicationId, null, PublicationAPersonne.ROLE_AUTEUR, recherche, start, nbElements, seqId);
|
|
|
395 |
}
|
|
|
396 |
|
|
|
397 |
public void selectionPublicationsAPersonne(Rafraichissable vueARafraichir, String personneId, String roleIds, String recherche, int start, int nbElements, Integer seqId) {
|
|
|
398 |
PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
|
|
399 |
paDao.selectionner(true, null, personneId, roleIds, recherche, start, nbElements, seqId);
|
|
|
400 |
}
|
|
|
401 |
|
1323 |
gduche |
402 |
public void selectionPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId, Integer seqId) {
|
1262 |
cyprien |
403 |
PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
1513 |
jpm |
404 |
paDao.selectionner(false, publicationId, personnesId, roleId, null, 0, -1, seqId);
|
741 |
aurelien |
405 |
}
|
822 |
jpm |
406 |
|
1428 |
cyprien |
407 |
public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String ordreAuteursSepareParVirgule, String roleId, Integer seqId) {
|
741 |
aurelien |
408 |
PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
1428 |
cyprien |
409 |
paDao.ajouter(publicationId, personnesId, ordreAuteursSepareParVirgule, roleId, seqId);
|
741 |
aurelien |
410 |
}
|
1428 |
cyprien |
411 |
|
|
|
412 |
public void modifierPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String ordreAuteurs, String roleId, Integer seqId) {
|
|
|
413 |
PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
|
|
414 |
paDao.modifier(publicationId, personnesId, ordreAuteurs, roleId, seqId);
|
|
|
415 |
}
|
741 |
aurelien |
416 |
|
1227 |
cyprien |
417 |
public void supprimerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationsAPersonneId) {
|
1428 |
cyprien |
418 |
PublicationAPersonneAsyncDao publicationAPersonneDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
901 |
jpm |
419 |
publicationAPersonneDao.supprimer(publicationsAPersonneId);
|
750 |
aurelien |
420 |
}
|
|
|
421 |
|
902 |
aurelien |
422 |
public void supprimerProjet(Rafraichissable vueARafraichir,
|
|
|
423 |
List<Projet> projetListe) {
|
|
|
424 |
|
|
|
425 |
String projetsId = "";
|
|
|
426 |
for(Iterator<Projet> it = projetListe.iterator(); it.hasNext();) {
|
|
|
427 |
Projet proj = it.next();
|
|
|
428 |
projetsId += proj.getId();
|
|
|
429 |
if(it.hasNext()) {
|
|
|
430 |
projetsId += ",";
|
|
|
431 |
}
|
|
|
432 |
}
|
|
|
433 |
ProjetAsyncDao pADAO = new ProjetAsyncDao(vueARafraichir);
|
|
|
434 |
pADAO.supprimer(projetsId);
|
|
|
435 |
}
|
985 |
jpm |
436 |
|
|
|
437 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
438 |
// GESTION DES COMMENTAIRES
|
|
|
439 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
440 |
|
1367 |
cyprien |
441 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, String projetId, String titre, int pageCourante, int nbElements, Integer seqId) {
|
985 |
jpm |
442 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
1513 |
jpm |
443 |
cDao.selectionner(false, commentaireId, projetId, titre, pageCourante, nbElements, seqId);
|
985 |
jpm |
444 |
}
|
|
|
445 |
|
1513 |
jpm |
446 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String recherche, int pageCourante, int nbElements, Integer seqId) {
|
|
|
447 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
|
|
448 |
cDao.selectionner(true, null, null, recherche, pageCourante, nbElements, seqId);
|
|
|
449 |
}
|
|
|
450 |
|
985 |
jpm |
451 |
public void modifierCommentaire(Rafraichissable vueRafraichir, Commentaire commentaire) {
|
|
|
452 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueRafraichir);
|
|
|
453 |
cDao.modifier(commentaire);
|
|
|
454 |
}
|
902 |
aurelien |
455 |
|
985 |
jpm |
456 |
public void ajouterCommentaire(Rafraichissable vueARafraichir, Commentaire commentaire) {
|
|
|
457 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
|
|
458 |
cDao.ajouter(commentaire);
|
|
|
459 |
}
|
|
|
460 |
|
|
|
461 |
public void supprimerCommentaire(Rafraichissable vueARafraichir, String idCommentaireSeparesParVirgule) {
|
|
|
462 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
|
|
463 |
cDao.supprimer(idCommentaireSeparesParVirgule);
|
|
|
464 |
}
|
1691 |
raphael |
465 |
}
|