9d2ca42eac
ActionScript bits remain belligerent, but the Java stuff is mostly shipshape. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6222 542714f4-19e9-0310-aa3c-eee0fc999fb1
29 lines
615 B
Java
29 lines
615 B
Java
//
|
|
// $Id$
|
|
|
|
package com.threerings.crowd.data;
|
|
|
|
import com.threerings.crowd.client.JabberController;
|
|
import com.threerings.crowd.client.PlaceController;
|
|
|
|
/**
|
|
* Defines the necessary bits for our chat room.
|
|
*/
|
|
public class JabberConfig extends PlaceConfig
|
|
{
|
|
// documentation inherited
|
|
@Override
|
|
public PlaceController createController ()
|
|
{
|
|
return new JabberController();
|
|
}
|
|
|
|
// documentation inherited
|
|
@Override
|
|
public String getManagerClassName ()
|
|
{
|
|
// nothing special needed on the server side
|
|
return "com.threerings.crowd.server.PlaceManager";
|
|
}
|
|
}
|