Interface UserGroupDao
-
- All Known Implementing Classes:
DefaultUserGroupDao
public interface UserGroupDao
Dao forUserGroupModel
access.- Since:
- 4.3
- Spring Bean ID:
- userGroupDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserGroupModel
findUserGroupByUid(java.lang.String uid)
Find the user group by the given uid.
-
-
-
Method Detail
-
findUserGroupByUid
UserGroupModel findUserGroupByUid(java.lang.String uid)
Find the user group by the given uid.- Parameters:
uid
- the unique identifier of the user group- Returns:
- the found
UserGroupModel
ornull
otherwise - Throws:
AmbiguousIdentifierException
- if more than one user groups were found for the given uid.
-
-