1 /*
2 * This file is part of the Civitas software distribution.
3 * Copyright (c) 2007-2008, Civitas project group, Cornell University.
4 * See the LICENSE file accompanying this distribution for further license
5 * and copyright information.
6 */
7 package civitas.common.election;
8
9 import civitas.common.tallystatefinal.TallyStateFinal;
10
11 public record ElectionEventFinalize(ElectionID electionID, int sequence, TallyStateFinal tally, String message)
12 implements ElectionEvent {
13
14 @Override
15 public String kind() {
16 return EVENT_KIND_FINALIZE;
17 }
18 }