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