source: protocol/src/main/java/geniusweb/protocol/CurrentNegoState.java@ 26

Last change on this file since 26 was 26, checked in by bart, 4 years ago

Voting requests now contain Offers. Fixed windows whitespace issue. Partiesserver now supports up to 8 parties simultaneously.

File size: 407 bytes
Line 
1package geniusweb.protocol;
2
3import geniusweb.events.CurrentState;
4
5/**
6 * Implementation of CurrentState event. This contains NegoState and therefore
7 * can not be defined in the events module.
8 */
9public class CurrentNegoState extends CurrentState {
10 private final NegoState state;
11
12 public CurrentNegoState(NegoState state) {
13 this.state = state;
14 }
15
16 public NegoState getState() {
17 return state;
18 }
19}
Note: See TracBrowser for help on using the repository browser.