Line data Source code
1 : // Copyright (C) 2018 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.server.audit.group; 16 : 17 : import com.google.auto.value.AutoValue; 18 : import com.google.common.collect.ImmutableSet; 19 : import com.google.gerrit.entities.Account; 20 : import com.google.gerrit.entities.AccountGroup; 21 : import java.time.Instant; 22 : 23 : @AutoValue 24 34 : public abstract class GroupMemberAuditEvent implements GroupAuditEvent { 25 : public static GroupMemberAuditEvent create( 26 : Account.Id actor, 27 : AccountGroup.UUID updatedGroup, 28 : ImmutableSet<Account.Id> modifiedMembers, 29 : Instant timestamp) { 30 34 : return new AutoValue_GroupMemberAuditEvent(actor, updatedGroup, modifiedMembers, timestamp); 31 : } 32 : 33 : @Override 34 : public abstract Account.Id getActor(); 35 : 36 : @Override 37 : public abstract AccountGroup.UUID getUpdatedGroup(); 38 : 39 : /** Gets the added or deleted members of the updated group. */ 40 : public abstract ImmutableSet<Account.Id> getModifiedMembers(); 41 : 42 : @Override 43 : public abstract Instant getTimestamp(); 44 : }