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