public class HibernateGroupDao extends Object implements InternalGroupDao<com.atlassian.crowd.model.group.InternalGroup>
Constructor and Description |
---|
HibernateGroupDao(org.hibernate.SessionFactory sessionFactory,
Supplier<com.atlassian.crowd.embedded.spi.DirectoryDao> directoryDao,
InternalMembershipDao membershipDao,
com.atlassian.crowd.util.persistence.hibernate.batch.BatchProcessor<net.sf.hibernate.Session> batchProcessor,
com.atlassian.crowd.util.persistence.hibernate.batch.BatchFinder batchFinder) |
Modifier and Type | Method and Description |
---|---|
com.atlassian.crowd.model.group.InternalGroup |
add(com.atlassian.crowd.model.group.Group group) |
com.atlassian.crowd.util.BatchResult<com.atlassian.crowd.model.group.Group> |
addAll(Set<? extends com.atlassian.crowd.model.group.Group> groups) |
com.atlassian.crowd.model.group.InternalGroup |
addLocal(com.atlassian.crowd.model.group.Group group) |
Map<String,String> |
findByExternalIds(long directoryId,
Set<String> externalIds) |
com.atlassian.crowd.model.group.InternalDirectoryGroup |
findByName(long directoryId,
String name) |
com.atlassian.crowd.model.group.GroupWithAttributes |
findByNameWithAttributes(long directoryId,
String name) |
Map<String,String> |
findExternalIdsByNames(long directoryId,
Set<String> groupNames) |
Set<String> |
getAllExternalIds(long directoryId) |
long |
getExternalGroupCount(long directoryId) |
long |
getGroupCount(long directoryId) |
Set<String> |
getLocalGroupNames(long directoryId) |
com.atlassian.crowd.model.group.InternalGroup |
internalFindByGroup(com.atlassian.crowd.model.group.Group group)
Find the persistent group object that corresponds to the provided group.
|
com.atlassian.crowd.model.group.InternalGroup |
internalFindByName(long directoryId,
String name)
Find a persistent group object from a given directory and group name
|
void |
remove(com.atlassian.crowd.model.group.Group group) |
void |
removeAllGroups(long directoryId)
Remove all groups from a particular directory (used when deleting an internal directory)
|
com.atlassian.crowd.util.BatchResult<String> |
removeAllGroups(long directoryId,
Set<String> groupNames) |
void |
removeAttribute(com.atlassian.crowd.model.group.Group group,
String attributeName) |
com.atlassian.crowd.model.group.Group |
rename(com.atlassian.crowd.model.group.Group group,
String newName) |
<T> List<T> |
search(long directoryId,
com.atlassian.crowd.search.query.entity.EntityQuery<T> query) |
void |
storeAttributes(com.atlassian.crowd.model.group.Group group,
Map<String,Set<String>> attributes) |
com.atlassian.crowd.model.group.Group |
update(com.atlassian.crowd.model.group.Group group) |
public HibernateGroupDao(org.hibernate.SessionFactory sessionFactory, Supplier<com.atlassian.crowd.embedded.spi.DirectoryDao> directoryDao, InternalMembershipDao membershipDao, com.atlassian.crowd.util.persistence.hibernate.batch.BatchProcessor<net.sf.hibernate.Session> batchProcessor, com.atlassian.crowd.util.persistence.hibernate.batch.BatchFinder batchFinder)
public com.atlassian.crowd.model.group.InternalDirectoryGroup findByName(long directoryId, String name) throws com.atlassian.crowd.exception.GroupNotFoundException
findByName
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.GroupNotFoundException
public com.atlassian.crowd.util.BatchResult<String> removeAllGroups(long directoryId, Set<String> groupNames)
removeAllGroups
in interface com.atlassian.crowd.embedded.spi.GroupDao
public Set<String> getAllExternalIds(long directoryId) throws com.atlassian.crowd.exception.DirectoryNotFoundException
getAllExternalIds
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.DirectoryNotFoundException
public long getGroupCount(long directoryId) throws com.atlassian.crowd.exception.DirectoryNotFoundException
getGroupCount
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.DirectoryNotFoundException
public Set<String> getLocalGroupNames(long directoryId) throws com.atlassian.crowd.exception.DirectoryNotFoundException
getLocalGroupNames
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.DirectoryNotFoundException
public Map<String,String> findByExternalIds(long directoryId, Set<String> externalIds)
findByExternalIds
in interface com.atlassian.crowd.embedded.spi.GroupDao
public Map<String,String> findExternalIdsByNames(long directoryId, Set<String> groupNames)
findExternalIdsByNames
in interface com.atlassian.crowd.embedded.spi.GroupDao
public long getExternalGroupCount(long directoryId) throws com.atlassian.crowd.exception.DirectoryNotFoundException
getExternalGroupCount
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.DirectoryNotFoundException
public com.atlassian.crowd.model.group.GroupWithAttributes findByNameWithAttributes(long directoryId, String name) throws com.atlassian.crowd.exception.GroupNotFoundException
findByNameWithAttributes
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.GroupNotFoundException
public com.atlassian.crowd.util.BatchResult<com.atlassian.crowd.model.group.Group> addAll(Set<? extends com.atlassian.crowd.model.group.Group> groups) throws com.atlassian.crowd.exception.DirectoryNotFoundException
addAll
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.DirectoryNotFoundException
public com.atlassian.crowd.model.group.InternalGroup add(com.atlassian.crowd.model.group.Group group) throws com.atlassian.crowd.exception.DirectoryNotFoundException
add
in interface InternalGroupDao<com.atlassian.crowd.model.group.InternalGroup>
add
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.DirectoryNotFoundException
public com.atlassian.crowd.model.group.InternalGroup addLocal(com.atlassian.crowd.model.group.Group group) throws com.atlassian.crowd.exception.DirectoryNotFoundException
addLocal
in interface InternalGroupDao<com.atlassian.crowd.model.group.InternalGroup>
addLocal
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.DirectoryNotFoundException
public com.atlassian.crowd.model.group.Group update(com.atlassian.crowd.model.group.Group group) throws com.atlassian.crowd.exception.GroupNotFoundException
update
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.GroupNotFoundException
public com.atlassian.crowd.model.group.Group rename(com.atlassian.crowd.model.group.Group group, String newName) throws com.atlassian.crowd.exception.GroupNotFoundException
rename
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.GroupNotFoundException
public com.atlassian.crowd.model.group.InternalGroup internalFindByGroup(com.atlassian.crowd.model.group.Group group) throws com.atlassian.crowd.exception.GroupNotFoundException
InternalGroupDao
internalFindByGroup
in interface InternalGroupDao<com.atlassian.crowd.model.group.InternalGroup>
com.atlassian.crowd.exception.GroupNotFoundException
public void removeAllGroups(long directoryId)
InternalGroupDao
removeAllGroups
in interface InternalGroupDao<com.atlassian.crowd.model.group.InternalGroup>
public void storeAttributes(com.atlassian.crowd.model.group.Group group, Map<String,Set<String>> attributes) throws com.atlassian.crowd.exception.GroupNotFoundException
storeAttributes
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.GroupNotFoundException
public void removeAttribute(com.atlassian.crowd.model.group.Group group, String attributeName) throws com.atlassian.crowd.exception.GroupNotFoundException
removeAttribute
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.GroupNotFoundException
public void remove(com.atlassian.crowd.model.group.Group group) throws com.atlassian.crowd.exception.GroupNotFoundException
remove
in interface com.atlassian.crowd.embedded.spi.GroupDao
com.atlassian.crowd.exception.GroupNotFoundException
public <T> List<T> search(long directoryId, com.atlassian.crowd.search.query.entity.EntityQuery<T> query)
search
in interface com.atlassian.crowd.embedded.spi.GroupDao
public com.atlassian.crowd.model.group.InternalGroup internalFindByName(long directoryId, String name) throws com.atlassian.crowd.exception.GroupNotFoundException
InternalGroupDao
internalFindByName
in interface InternalGroupDao<com.atlassian.crowd.model.group.InternalGroup>
com.atlassian.crowd.exception.GroupNotFoundException
Copyright © 2003–2021 Atlassian. All rights reserved.