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