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