ch.openchvote.votingclient.writein.states.FINAL Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voting-client Show documentation
Show all versions of voting-client Show documentation
This module implements the 'voting client' party of the CHVote protocol.
/*
* Copyright (C) 2024 Berner Fachhochschule https://e-voting.bfh.ch
*
* - This program is free software: you can redistribute it and/or modify -
* - it under the terms of the GNU Affero General Public License as published by -
* - the Free Software Foundation, either version 3 of the License, or -
* - (at your option) any later version. -
* - -
* - This program is distributed in the hope that it will be useful, -
* - but WITHOUT ANY WARRANTY; without even the implied warranty of -
* - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -
* - GNU General Public License for more details. -
* - -
* - You should have received a copy of the GNU Affero General Public License -
* - along with this program. If not, see . -
*/
package ch.openchvote.votingclient.writein.states;
import ch.openchvote.framework.annotations.state.Notify;
import ch.openchvote.framework.communication.Status;
import ch.openchvote.framework.party.State;
import ch.openchvote.votingclient.VotingClient;
import ch.openchvote.votingclient.writein.EventContext;
@SuppressWarnings("MissingJavadoc")
@Notify(Status.Type.FINAL)
public final class FINAL extends State {
public FINAL(VotingClient votingClient, EventContext eventContext) {
super(votingClient, eventContext);
}
}