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