Interface PersonalInformationBulkDao
-
- All Known Implementing Classes:
HibernatePersonalInformationDao
,ReadThroughCachingPersonalInformationDao
public interface PersonalInformationBulkDao
A specialist DAO interface for bulk-fetchingPersonalInformation
entities.- Since:
- 5.10
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<PersonalInformation>
bulkFetchPersonalInformation(Collection<com.atlassian.sal.api.user.UserKey> userKeys)
Bulk-fetch thePersonalInformation
entities for the given collection ofUserKey
s.
-
-
-
Method Detail
-
bulkFetchPersonalInformation
Collection<PersonalInformation> bulkFetchPersonalInformation(Collection<com.atlassian.sal.api.user.UserKey> userKeys)
Bulk-fetch thePersonalInformation
entities for the given collection ofUserKey
s.- Returns:
- a collection containing at-most one
PersonalInformation
object for each user
-
-