Package com.google.gerrit.server.group
Interface GroupAuditService
-
public interface GroupAuditService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
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 Detail
-
dispatch
void dispatch(AuditEvent action)
-
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)
-
-