source: protocol/src/main/java/geniusweb/protocol/session/SessionProtocol.java@ 27

Last change on this file since 27 was 27, checked in by bart, 4 years ago
  • party capabilities now include profile information. Existing parties may need small fix * plot layout shows accepts * VotingEvaluator use group power instead of group size * runsession you can now also select MOPAC-only parties
File size: 393 bytes
Line 
1package geniusweb.protocol.session;
2
3import com.fasterxml.jackson.annotation.JsonSubTypes;
4import com.fasterxml.jackson.annotation.JsonSubTypes.Type;
5
6import geniusweb.protocol.NegoProtocol;
7import geniusweb.protocol.session.saop.SAOP;
8
9/**
10 * Interface for all session protocols.
11 *
12 */
13@JsonSubTypes({ @Type(value = SAOP.class) })
14
15public interface SessionProtocol extends NegoProtocol {
16
17}
Note: See TracBrowser for help on using the repository browser.