| Line 327... |
Line 327... |
| 327 |
}
|
327 |
}
|
| Line 328... |
Line 328... |
| 328 |
|
328 |
|
| 329 |
public void supprimerPersonne(Rafraichissable vueARafraichir, String idPersonneSepareParVirgule) {
|
329 |
public void supprimerPersonne(Rafraichissable vueARafraichir, String idPersonneSepareParVirgule) {
|
| 330 |
PersonneAsyncDao personneDao = new PersonneAsyncDao(vueARafraichir);
|
330 |
PersonneAsyncDao personneDao = new PersonneAsyncDao(vueARafraichir);
|
| 331 |
personneDao.supprimer(idPersonneSepareParVirgule);
|
- |
|
| 332 |
|
331 |
personneDao.supprimer(idPersonneSepareParVirgule);
|
| Line 333... |
Line 332... |
| 333 |
}
|
332 |
}
|
| 334 |
|
333 |
|
| 335 |
public void ajouterPersonne(Rafraichissable vue, Personne personne) {
|
334 |
public void ajouterPersonne(Rafraichissable vue, Personne personne) {
|
| Line 339... |
Line 338... |
| 339 |
|
338 |
|
| 340 |
public void modifierPersonne(Rafraichissable vueARafraichir, Personne personne) {
|
339 |
public void modifierPersonne(Rafraichissable vueARafraichir, Personne personne) {
|
| 341 |
PersonneAsyncDao personneDao = new PersonneAsyncDao(vueARafraichir);
|
340 |
PersonneAsyncDao personneDao = new PersonneAsyncDao(vueARafraichir);
|
| 342 |
personneDao.modifier(personne);
|
341 |
personneDao.modifier(personne);
|
| 343 |
}
|
342 |
}
|
| 344 |
|
343 |
|
| 345 |
//+----------------------------------------------------------------------------------------------------------------+
|
344 |
//+----------------------------------------------------------------------------------------------------------------+
|
| 346 |
// GESTION DES PUBLICATIONS
|
345 |
// GESTION DES PUBLICATIONS
|
| Line 347... |
Line 346... |
| 347 |
//+----------------------------------------------------------------------------------------------------------------+
|
346 |
//+----------------------------------------------------------------------------------------------------------------+
|
| 348 |
|
347 |
|
| 349 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String publicationId, String projetId, String nomComplet, int nbElements, int pageCourante, Integer seqId) {
|
348 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String publicationId, String projetId, String nomComplet, int nbElements, int pageCourante, Integer seqId) {
|
| - |
|
349 |
PublicationAsyncDao lsDao = new PublicationAsyncDao(vueARafraichir);
|
| - |
|
350 |
lsDao.selectionner(false, publicationId, projetId, nomComplet, pageCourante, nbElements, seqId);
|
| - |
|
351 |
}
|
| - |
|
352 |
|
| - |
|
353 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Integer seqId) {
|
| 350 |
PublicationAsyncDao lsDao = new PublicationAsyncDao(vueARafraichir);
|
354 |
PublicationAsyncDao lsDao = new PublicationAsyncDao(vueARafraichir);
|
| Line 351... |
Line 355... |
| 351 |
lsDao.selectionner(publicationId, projetId, nomComplet, nbElements, pageCourante, seqId);
|
355 |
lsDao.selectionner(true, null, null, recherche, start, nbElements, seqId);
|
| 352 |
}
|
356 |
}
|
| 353 |
|
357 |
|
| Line 408... |
Line 412... |
| 408 |
// GESTION DES COMMENTAIRES
|
412 |
// GESTION DES COMMENTAIRES
|
| 409 |
//+----------------------------------------------------------------------------------------------------------------+
|
413 |
//+----------------------------------------------------------------------------------------------------------------+
|
| Line 410... |
Line 414... |
| 410 |
|
414 |
|
| 411 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, String projetId, String titre, int pageCourante, int nbElements, Integer seqId) {
|
415 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, String projetId, String titre, int pageCourante, int nbElements, Integer seqId) {
|
| 412 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
416 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
| - |
|
417 |
cDao.selectionner(false, commentaireId, projetId, titre, pageCourante, nbElements, seqId);
|
| - |
|
418 |
}
|
| - |
|
419 |
|
| - |
|
420 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String recherche, int pageCourante, int nbElements, Integer seqId) {
|
| - |
|
421 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
| 413 |
cDao.selectionner(commentaireId, projetId, titre, pageCourante, nbElements, seqId);
|
422 |
cDao.selectionner(true, null, null, recherche, pageCourante, nbElements, seqId);
|
| Line 414... |
Line 423... |
| 414 |
}
|
423 |
}
|
| 415 |
|
424 |
|
| 416 |
public void modifierCommentaire(Rafraichissable vueRafraichir, Commentaire commentaire) {
|
425 |
public void modifierCommentaire(Rafraichissable vueRafraichir, Commentaire commentaire) {
|