Subversion Repositories eFlore/Applications.coel

Rev

Rev 1485 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1485 Rev 1487
Line 381... Line 381...
381
	}
381
	}
Line 382... Line 382...
382
 
382
 
383
	//+----------------------------------------------------------------------------------------------------------------+
383
	//+----------------------------------------------------------------------------------------------------------------+
Line 384... Line 384...
384
	// GESTION de la relation PUBLICATION A PERSONNE
384
	// GESTION de la relation PUBLICATION A PERSONNE
385
 
385
 
-
 
386
	public void selectionPersonnesAPublication(Rafraichissable vueARafraichir, String publicationId, String recherche, int start, int nbElements, Integer seqId) {
-
 
387
		PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
-
 
388
		paDao.selectionner(true, publicationId, null, PublicationAPersonne.ROLE_AUTEUR, recherche, start, nbElements, seqId);
-
 
389
	}
-
 
390
	
386
	public void selectionPublicationAPersonne(Rafraichissable vueARafraichir, String personneId, String recherche, int start, int nbElements, Integer seqId) {
391
	public void selectionPublicationsAPersonne(Rafraichissable vueARafraichir, String personneId, String roleIds, String recherche, int start, int nbElements, Integer seqId) {
387
		PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
392
		PublicationAPersonneAsyncDao paDao = new PublicationAPersonneAsyncDao(vueARafraichir);
Line 388... Line 393...
388
		paDao.selectionner(true, null, personneId, null, recherche, start, nbElements, seqId);
393
		paDao.selectionner(true, null, personneId, roleIds, recherche, start, nbElements, seqId);
389
	}
394
	}
390
	
395