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 public interface ElectionEvent {
10 String EVENT_KIND_START = "start";
11 String EVENT_KIND_STOP = "stop";
12 String EVENT_KIND_FINALIZE = "finalize";
13
14 String kind();
15
16 ElectionID electionID();
17
18 int sequence();
19 }