Line 47... |
Line 47... |
47 |
//+----------------------------------------------------------------------------------------------------------------+
|
47 |
//+----------------------------------------------------------------------------------------------------------------+
|
48 |
// GESTION DES VALEURS ET LISTES
|
48 |
// GESTION DES VALEURS ET LISTES
|
49 |
//+----------------------------------------------------------------------------------------------------------------+
|
49 |
//+----------------------------------------------------------------------------------------------------------------+
|
Line 50... |
Line 50... |
50 |
|
50 |
|
51 |
public void obtenirListeValeurs(Rafraichissable vue, Integer id) {
|
- |
|
52 |
|
- |
|
53 |
Debug.log("|> Modele.obtenirListeValeurs(Rafraichissable vue, Integer id)");
|
- |
|
54 |
Debug.log("|--> id="+id);
|
- |
|
55 |
|
51 |
public void obtenirListeValeurs(Rafraichissable vue, Integer id) {
|
56 |
ValeurListeAsyncDao lsDao = new ValeurListeAsyncDao(vue);
|
52 |
ValeurListeAsyncDao lsDao = new ValeurListeAsyncDao(vue);
|
57 |
lsDao.obtenirListe(id);
|
53 |
lsDao.obtenirListe(id);
|
Line 274... |
Line 270... |
274 |
//+----------------------------------------------------------------------------------------------------------------+
|
270 |
//+----------------------------------------------------------------------------------------------------------------+
|
275 |
// GESTION DES PERSONNES
|
271 |
// GESTION DES PERSONNES
|
276 |
//+----------------------------------------------------------------------------------------------------------------+
|
272 |
//+----------------------------------------------------------------------------------------------------------------+
|
Line 277... |
Line 273... |
277 |
|
273 |
|
278 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String personneId, String projetId, String nomComplet, int start, int nbElements) {
|
- |
|
279 |
Debug.log("|> Modele.selectionnerPersonne BEGIN");
|
274 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String personneId, String projetId, String nomComplet, int start, int nbElements) {
|
280 |
PersonneAsyncDao pDao = new PersonneAsyncDao(vueARafraichir);
|
275 |
PersonneAsyncDao pDao = new PersonneAsyncDao(vueARafraichir);
|
281 |
pDao.selectionner(personneId, projetId, nomComplet, start, nbElements);
|
- |
|
282 |
Debug.log("|> Modele.selectionnerPersonne END");
|
276 |
pDao.selectionner(personneId, projetId, nomComplet, start, nbElements);
|
Line 283... |
Line 277... |
283 |
}
|
277 |
}
|
284 |
|
278 |
|
285 |
public void supprimerPersonne(Rafraichissable vueARafraichir, String idPersonneSepareParVirgule) {
|
279 |
public void supprimerPersonne(Rafraichissable vueARafraichir, String idPersonneSepareParVirgule) {
|
Line 315... |
Line 309... |
315 |
public void ajouterPublication(Rafraichissable vueARafraichir, Publication publication) {
|
309 |
public void ajouterPublication(Rafraichissable vueARafraichir, Publication publication) {
|
316 |
PublicationAsyncDao pDao = new PublicationAsyncDao(vueARafraichir);
|
310 |
PublicationAsyncDao pDao = new PublicationAsyncDao(vueARafraichir);
|
317 |
pDao.ajouter(publication);
|
311 |
pDao.ajouter(publication);
|
318 |
}
|
312 |
}
|
Line 319... |
Line 313... |
319 |
|
313 |
|
320 |
public void supprimerPublication(Rafraichissable vueARafraichir, String idPublicationSeparesParVirgule) {
|
- |
|
321 |
|
- |
|
322 |
Debug.log("(*)BEGIN Modele.supprimerPublication()");
|
- |
|
323 |
|
314 |
public void supprimerPublication(Rafraichissable vueARafraichir, String idPublicationSeparesParVirgule) {
|
324 |
PublicationAsyncDao pDao = new PublicationAsyncDao(vueARafraichir);
|
315 |
PublicationAsyncDao pDao = new PublicationAsyncDao(vueARafraichir);
|
325 |
pDao.supprimer(idPublicationSeparesParVirgule);
|
- |
|
326 |
|
- |
|
327 |
Debug.log("(*) END Modele.supprimerPublication()");
|
- |
|
328 |
|
316 |
pDao.supprimer(idPublicationSeparesParVirgule);
|
Line 329... |
Line 317... |
329 |
}
|
317 |
}
|
330 |
|
318 |
|
Line 331... |
Line 319... |
331 |
//+----------------------------------------------------------------------------------------------------------------+
|
319 |
//+----------------------------------------------------------------------------------------------------------------+
|
332 |
// GESTION de la relation PUBLICATION A PERSONNE
|
- |
|
333 |
|
- |
|
334 |
public void selectionPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId) {
|
- |
|
335 |
|
320 |
// GESTION de la relation PUBLICATION A PERSONNE
|
336 |
Debug.log("|> BEGIN Modele.selectionPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId)");
|
- |
|
337 |
|
- |
|
338 |
PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
321 |
|
339 |
|
- |
|
340 |
Debug.log("|--> paDao.selectionner(publicationId, personnesId, roleId) : personnesId="+personnesId+", publicationId="+publicationId);
|
- |
|
341 |
paDao.selectionner(publicationId, personnesId, roleId);
|
- |
|
342 |
|
322 |
public void selectionPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId) {
|
Line 343... |
Line 323... |
343 |
Debug.log("|> END Modele.selectionPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId)");
|
323 |
PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
344 |
|
- |
|
345 |
}
|
324 |
paDao.selectionner(publicationId, personnesId, roleId);
|
346 |
|
- |
|
347 |
public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId) {
|
325 |
}
|
348 |
Debug.log("<8-8> BEGIN Modele.ajouterPublicationAPersonne()");
|
- |
|
349 |
PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
326 |
|
Line 350... |
Line 327... |
350 |
Debug.log("<8-8> publicationId="+publicationId+" - personnesId="+personnesId+" - roleId="+roleId);
|
327 |
public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId) {
|
351 |
paDao.ajouter(publicationId, personnesId, roleId);
|
- |
|
352 |
Debug.log("<8-8> END Modele.ajouterPublicationAPersonne()");
|
- |
|
353 |
}
|
- |
|
354 |
|
328 |
PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
355 |
public void supprimerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationsAPersonneId) {
|
329 |
paDao.ajouter(publicationId, personnesId, roleId);
|
356 |
|
- |
|
357 |
Debug.log("(*) BEGIN Modele.supprimerPublicationAPersonne()");
|
- |
|
358 |
|
- |
|
359 |
PublicationAPersonneAsyncDao publicationAPersonneDao = new PublicationAPersonneAsyncDao(vueARafraichir);
|
330 |
}
|
Line 360... |
Line 331... |
360 |
publicationAPersonneDao.supprimer(publicationsAPersonneId);
|
331 |
|
361 |
|
332 |
public void supprimerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationsAPersonneId) {
|