Modifier and Type | Method and Description |
---|---|
BatchResult<Group> |
GroupDAOHibernate.addAll(Set<? extends Group> groups) |
BatchResult<String> |
GroupDAOHibernate.removeAllGroups(long directoryId,
Set<String> groupNames) |
Modifier and Type | Method and Description |
---|---|
BatchResult<InternalMembership> |
MembershipDAOHibernate.addAll(Set<InternalMembership> memberships) |
BatchResult<InternalMembership> |
InternalMembershipDao.addAll(Set<InternalMembership> memberships)
Bulk add of memberships.
|
BatchResult<String> |
MembershipDAOHibernate.addAllUsersToGroup(long directoryId,
Collection<String> userNames,
String groupName) |
Modifier and Type | Method and Description |
---|---|
BatchResult<User> |
UserDAOHibernate.addAll(Set<UserTemplateWithCredentialAndAttributes> users) |
BatchResult<String> |
UserDAOHibernate.removeAllUsers(long directoryId,
Set<String> userNames) |
Modifier and Type | Method and Description |
---|---|
BatchResult<Group> |
InternalDirectory.addAllGroups(Set<GroupTemplate> groups) |
BatchResult<Group> |
CachingDirectory.addAllGroups(Set<GroupTemplate> groups) |
BatchResult<Group> |
InternalRemoteDirectory.addAllGroups(Set<GroupTemplate> groups)
Adds a collection of groups to the directory.
|
BatchResult<User> |
InternalDirectory.addAllUsers(Set<UserTemplateWithCredentialAndAttributes> users) |
BatchResult<User> |
CachingDirectory.addAllUsers(Set<UserTemplateWithCredentialAndAttributes> users) |
BatchResult<User> |
InternalRemoteDirectory.addAllUsers(Set<UserTemplateWithCredentialAndAttributes> users)
Adds a collection of users to the directory.
|
BatchResult<String> |
InternalDirectory.addAllUsersToGroup(Set<String> userNames,
String groupName) |
BatchResult<String> |
CachingDirectory.addAllUsersToGroup(Set<String> userNames,
String groupName) |
BatchResult<String> |
InternalRemoteDirectory.addAllUsersToGroup(Set<String> userNames,
String groupName)
Adds a collection of users to a group.
|
BatchResult<String> |
AbstractInternalDirectory.removeAllGroups(Set<String> groupNames) |
BatchResult<String> |
InternalRemoteDirectory.removeAllGroups(Set<String> groupNames)
Removes all groups from the directory.
|
BatchResult<String> |
AbstractInternalDirectory.removeAllUsers(Set<String> userNames) |
BatchResult<String> |
InternalRemoteDirectory.removeAllUsers(Set<String> usernames)
Removes all users from the directory.
|
Modifier and Type | Method and Description |
---|---|
BatchResult<Group> |
GroupDao.addAll(Set<? extends Group> groups)
Bulk add of groups.
|
BatchResult<User> |
UserDao.addAll(Set<UserTemplateWithCredentialAndAttributes> users)
Bulk add users.
|
BatchResult<String> |
MembershipDao.addAllUsersToGroup(long directoryId,
Collection<String> userNames,
String groupName)
Bulk adds all the given users into the given group.
|
BatchResult<String> |
GroupDao.removeAllGroups(long directoryId,
Set<String> groupNames)
Bulk remove all the given groups.
|
BatchResult<String> |
UserDao.removeAllUsers(long directoryId,
Set<String> userNames)
Bulk remove all the given users from directory.
|
Modifier and Type | Method and Description |
---|---|
BatchResult<BatchResultEntityWithCause> |
MembershipService.addUsersToGroup(long directoryId,
List<String> usernames,
String groupName)
Adds multiple users to single supplied group
|
BatchResult<BatchResultEntityWithCause> |
MembershipService.addUserToGroups(long directoryId,
String username,
List<String> groupNames)
Adds single supplied user to multiple groups
|
BatchResult<BatchResultEntityWithCause> |
MembershipService.removeUserFromGroups(long directoryId,
String username,
List<String> groupNames)
Removes single supplied user from multiple groups
|
BatchResult<BatchResultEntityWithCause> |
MembershipService.removeUsersFromGroup(long directoryId,
List<String> usernames,
String groupName)
Removes multiple users from the supplied group
|
Modifier and Type | Method and Description |
---|---|
BatchResult<BatchResultEntityWithCause> |
MembershipServiceImpl.addUsersToGroup(long directoryId,
List<String> usernames,
String groupName) |
BatchResult<BatchResultEntityWithCause> |
MembershipServiceImpl.addUserToGroups(long directoryId,
String username,
List<String> groupNames) |
BatchResult<BatchResultEntityWithCause> |
MembershipServiceImpl.removeUserFromGroups(long directoryId,
String username,
List<String> groupNames) |
BatchResult<BatchResultEntityWithCause> |
MembershipServiceImpl.removeUsersFromGroup(long directoryId,
List<String> usernames,
String groupName) |
Modifier and Type | Method and Description |
---|---|
static <T,V,K extends BatchResult<V>> |
BatchResult.transform(BatchResult<T> batchResult,
Function<T,V> transformer,
Supplier<K> supplier) |
Modifier and Type | Method and Description |
---|---|
static <T,V> BatchResult<V> |
BatchResult.transform(BatchResult<T> batchResult,
Function<T,V> transformer) |
Modifier and Type | Method and Description |
---|---|
static <T,V> BatchResult<V> |
BatchResult.transform(BatchResult<T> batchResult,
Function<T,V> transformer) |
static <T,V,K extends BatchResult<V>> |
BatchResult.transform(BatchResult<T> batchResult,
Function<T,V> transformer,
Supplier<K> supplier) |
Modifier and Type | Class and Description |
---|---|
class |
BatchResultWithIdReferences<T>
Batch result that stores ID references of all the directory entities that were
successfully processed by the batch.
|
Modifier and Type | Method and Description |
---|---|
<E> BatchResult<E> |
AbstractBatchProcessor.execute(HibernateOperation<S> op,
Collection<E> objects) |
<E> BatchResult<E> |
BatchProcessor.execute(HibernateOperation<S> operation,
Collection<E> objects) |
<E> BatchResult<E> |
AbstractBatchProcessor.execute(HibernateOperation<S> op,
Collection<E> objects,
BulkAuditMapper<E> bulkAuditMapper)
The set is first divided into smaller sets of
batchSize . |
<E> BatchResult<E> |
BatchProcessor.execute(HibernateOperation<S> operation,
Collection<E> objects,
BulkAuditMapper<E> bulkAuditMapper) |
Copyright © 2020 Atlassian. All rights reserved.