source: protocol/src/main/java/geniusweb/protocol/partyconnection/ProtocolToPartyConn.java@ 52

Last change on this file since 52 was 52, checked in by ruud, 14 months ago

Fixed small issues in domaineditor.

File size: 504 bytes
Line 
1package geniusweb.protocol.partyconnection;
2
3import geniusweb.actions.Action;
4import geniusweb.actions.PartyId;
5import geniusweb.connection.ConnectionEnd;
6import geniusweb.inform.Inform;
7
8/**
9 * Connection of the protocol with a party. Note, this is the opposite direction
10 * of a connection of the party with the protocol.
11 */
12public interface ProtocolToPartyConn extends ConnectionEnd<Action, Inform> {
13
14 /**
15 *
16 * @return the partyId of the party that this connects to.
17 */
18 PartyId getParty();
19}
Note: See TracBrowser for help on using the repository browser.