Interface UserDao
-
- All Known Implementing Classes:
DefaultChineseUserDao
,DefaultUserDao
public interface UserDao
Dao forUserModel
access.- Since:
- 4.3
- Spring Bean ID:
- userDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserModel
findUserByUID(java.lang.String uid)
Returns for the givenuid
theUserModel
.
-
-
-
Method Detail
-
findUserByUID
UserModel findUserByUID(java.lang.String uid)
Returns for the givenuid
theUserModel
.- Parameters:
uid
- the unique identifier of the user- Returns:
null
if for the givenuid
noUserModel
was found.- Throws:
AmbiguousIdentifierException
- if more as one User was found for the givenuid
-
-