WhirledClient -> WhirledSession.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@775 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2008-11-06 18:05:51 +00:00
parent 2ea7b94d72
commit 555a379742
3 changed files with 4 additions and 4 deletions
@@ -56,7 +56,7 @@ public abstract class WhirledServer extends CrowdServer
// configure the client to use our whirled client // configure the client to use our whirled client
_clmgr.setClientFactory(new ClientFactory() { _clmgr.setClientFactory(new ClientFactory() {
public Class<? extends PresentsSession> getClientClass (AuthRequest areq) { public Class<? extends PresentsSession> getClientClass (AuthRequest areq) {
return WhirledClient.class; return WhirledSession.class;
} }
public Class<? extends ClientResolver> getClientResolverClass (Name username) { public Class<? extends ClientResolver> getClientResolverClass (Name username) {
return ClientResolver.class; return ClientResolver.class;
@@ -26,7 +26,7 @@ import com.threerings.crowd.server.CrowdSession;
/** /**
* The client object used by client management on the Whirled server. * The client object used by client management on the Whirled server.
*/ */
public class WhirledClient extends CrowdSession public class WhirledSession extends CrowdSession
{ {
// nothing needed at the moment // nothing needed at the moment
} }
@@ -21,7 +21,7 @@
package com.threerings.whirled.spot.server; package com.threerings.whirled.spot.server;
import com.threerings.whirled.server.WhirledClient; import com.threerings.whirled.server.WhirledSession;
/** /**
* Extends the Whirled client and handles the necessary notifications that * Extends the Whirled client and handles the necessary notifications that
@@ -29,6 +29,6 @@ import com.threerings.whirled.server.WhirledClient;
* they were occupying know that they didn't exit via a portal, but * they were occupying know that they didn't exit via a portal, but
* instead just disappeared. * instead just disappeared.
*/ */
public class SpotClient extends WhirledClient public class SpotClient extends WhirledSession
{ {
} }