WhirledClient -> WhirledSession.
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@775 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
+1
-1
@@ -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
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user