Package com.google.gerrit.server.group
Interface GroupAuditService
public interface GroupAuditService
-
Method Summary
Modifier and TypeMethodDescriptionvoid
dispatch
(AuditEvent action) void
dispatchAddMembers
(Account.Id actor, AccountGroup.UUID updatedGroup, com.google.common.collect.ImmutableSet<Account.Id> addedMembers, Instant addedOn) void
dispatchAddSubgroups
(Account.Id actor, AccountGroup.UUID updatedGroup, com.google.common.collect.ImmutableSet<AccountGroup.UUID> addedSubgroups, Instant addedOn) void
dispatchDeleteMembers
(Account.Id actor, AccountGroup.UUID updatedGroup, com.google.common.collect.ImmutableSet<Account.Id> deletedMembers, Instant deletedOn) void
dispatchDeleteSubgroups
(Account.Id actor, AccountGroup.UUID updatedGroup, com.google.common.collect.ImmutableSet<AccountGroup.UUID> deletedSubgroups, Instant deletedOn)
-
Method Details
-
dispatch
-
dispatchAddMembers
void dispatchAddMembers(Account.Id actor, AccountGroup.UUID updatedGroup, com.google.common.collect.ImmutableSet<Account.Id> addedMembers, Instant addedOn) -
dispatchDeleteMembers
void dispatchDeleteMembers(Account.Id actor, AccountGroup.UUID updatedGroup, com.google.common.collect.ImmutableSet<Account.Id> deletedMembers, Instant deletedOn) -
dispatchAddSubgroups
void dispatchAddSubgroups(Account.Id actor, AccountGroup.UUID updatedGroup, com.google.common.collect.ImmutableSet<AccountGroup.UUID> addedSubgroups, Instant addedOn) -
dispatchDeleteSubgroups
void dispatchDeleteSubgroups(Account.Id actor, AccountGroup.UUID updatedGroup, com.google.common.collect.ImmutableSet<AccountGroup.UUID> deletedSubgroups, Instant deletedOn)
-