◆ getMyContacts()
Collection<IContact> org.turro.dossier.command.DossierContactSet.getMyContacts |
( |
IConstructor |
constructor, |
|
|
String |
search |
|
) |
| |
Implements org.turro.action.IMyContact.
Definition at line 44 of file DossierContactSet.java.
45 ContactSortedSet css =
new ContactSortedSet(I_.api().used());
46 if(!Strings.isBlank(search)) {
47 IContact user = Authentication.getIContact();
49 Dao dao =
new DossierPU();
50 for(String c : (List<String>) dao.getResultList(createCategoryCriteria(user, search))) {
51 DefaultContact dc =
new DefaultContact();
57 for(String c : (List<String>) dao.getResultList(createDossierCriteria(user, search))) {
58 DefaultContact dc =
new DefaultContact();
64 for(String c : (List<String>) dao.getResultList(createIssueCriteria(user, search))) {
65 DefaultContact dc =
new DefaultContact();
The documentation for this class was generated from the following file: