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