Interface GroupEntityManager
-
- All Superinterfaces:
EntityManager<PlatformGroupEntity>
- All Known Implementing Classes:
GroupEntityManagerImpl
public interface GroupEntityManager extends EntityManager<PlatformGroupEntity>
- Author:
- Joram Barrez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PlatformGroupEntity
createNewGroup(String groupId)
PlatformGroupQuery
createNewGroupQuery()
List<PlatformGroup>
findGroupByQueryCriteria(PlatformGroupQueryImpl query)
long
findGroupCountByNativeQuery(Map<String,Object> parameterMap)
long
findGroupCountByQueryCriteria(PlatformGroupQueryImpl query)
List<PlatformGroup>
findGroupsByNativeQuery(Map<String,Object> parameterMap)
List<PlatformGroup>
findGroupsByPrivilegeId(String privilegeId)
List<PlatformGroup>
findGroupsByUser(String userId)
boolean
isNewGroup(Group group)
-
-
-
Method Detail
-
createNewGroup
PlatformGroupEntity createNewGroup(String groupId)
-
createNewGroupQuery
PlatformGroupQuery createNewGroupQuery()
-
findGroupByQueryCriteria
List<PlatformGroup> findGroupByQueryCriteria(PlatformGroupQueryImpl query)
-
findGroupCountByQueryCriteria
long findGroupCountByQueryCriteria(PlatformGroupQueryImpl query)
-
findGroupsByUser
List<PlatformGroup> findGroupsByUser(String userId)
-
findGroupsByNativeQuery
List<PlatformGroup> findGroupsByNativeQuery(Map<String,Object> parameterMap)
-
isNewGroup
boolean isNewGroup(Group group)
-
findGroupsByPrivilegeId
List<PlatformGroup> findGroupsByPrivilegeId(String privilegeId)
-
-