Added a simple chat server test framework onto which I will built a

JME-based client.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3512 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2005-04-20 22:30:19 +00:00
parent 00038b69bf
commit 9d2505c115
6 changed files with 475 additions and 0 deletions
@@ -0,0 +1,26 @@
//
// $Id$
package com.threerings.crowd.data;
import com.threerings.crowd.client.JabberController;
import com.threerings.crowd.data.PlaceConfig;
/**
* Defines the necessary bits for our chat room.
*/
public class JabberConfig extends PlaceConfig
{
// documentation inherited
public Class getControllerClass ()
{
return JabberController.class;
}
// documentation inherited
public String getManagerClassName ()
{
// nothing special needed on the server side
return "com.threerings.crowd.server.PlaceManager";
}
}