@@ -43,6 +43,11 @@ import java.util.Set;
*/
public interface HostedConnection extends MessageConnection
{
+ /**
+ * Returns the Server instance that is hosting this connection.
+ */
+ public Server getServer();
+
/**
* Returns the server-unique ID for this client.
@@ -379,7 +379,12 @@ public class DefaultServer implements Server
id = nextId.getAndIncrement();
}
-
+ public Server getServer()
+ {
+ return DefaultServer.this;
+ }
public int getId()
return id;