Updated services.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5436 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-10-10 22:46:24 +00:00
parent 97b6ea79c5
commit f1b1a06834
22 changed files with 37 additions and 64 deletions
@@ -21,12 +21,11 @@
package com.threerings.admin.data; package com.threerings.admin.data;
import com.threerings.admin.client.AdminService;
import com.threerings.presents.client.Client; import com.threerings.presents.client.Client;
import com.threerings.presents.data.InvocationMarshaller; import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.presents.dobj.InvocationResponseEvent; import com.threerings.presents.dobj.InvocationResponseEvent;
import com.threerings.admin.client.AdminService;
/** /**
* Provides the implementation of the {@link AdminService} interface * Provides the implementation of the {@link AdminService} interface
* that marshalls the arguments and delivers the request to the provider * that marshalls the arguments and delivers the request to the provider
@@ -21,13 +21,12 @@
package com.threerings.admin.server; package com.threerings.admin.server;
import com.threerings.admin.client.AdminService;
import com.threerings.admin.data.AdminMarshaller;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationDispatcher; import com.threerings.presents.server.InvocationDispatcher;
import com.threerings.presents.server.InvocationException; import com.threerings.presents.server.InvocationException;
import com.threerings.admin.client.AdminService;
import com.threerings.admin.data.AdminMarshaller;
/** /**
* Dispatches requests to the {@link AdminProvider}. * Dispatches requests to the {@link AdminProvider}.
*/ */
@@ -21,11 +21,10 @@
package com.threerings.bureau.data; package com.threerings.bureau.data;
import com.threerings.bureau.client.BureauService;
import com.threerings.presents.client.Client; import com.threerings.presents.client.Client;
import com.threerings.presents.data.InvocationMarshaller; import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.bureau.client.BureauService;
/** /**
* Provides the implementation of the {@link BureauService} interface * Provides the implementation of the {@link BureauService} interface
* that marshalls the arguments and delivers the request to the provider * that marshalls the arguments and delivers the request to the provider
@@ -21,12 +21,11 @@
package com.threerings.bureau.server; package com.threerings.bureau.server;
import com.threerings.bureau.data.BureauMarshaller;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationDispatcher; import com.threerings.presents.server.InvocationDispatcher;
import com.threerings.presents.server.InvocationException; import com.threerings.presents.server.InvocationException;
import com.threerings.bureau.data.BureauMarshaller;
/** /**
* Dispatches requests to the {@link BureauProvider}. * Dispatches requests to the {@link BureauProvider}.
*/ */
@@ -21,11 +21,10 @@
package com.threerings.bureau.server; package com.threerings.bureau.server;
import com.threerings.bureau.client.BureauService;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationProvider; import com.threerings.presents.server.InvocationProvider;
import com.threerings.bureau.client.BureauService;
/** /**
* Defines the server-side of the {@link BureauService}. * Defines the server-side of the {@link BureauService}.
*/ */
@@ -21,11 +21,10 @@
package com.threerings.crowd.chat.data; package com.threerings.crowd.chat.data;
import com.threerings.crowd.chat.client.ChannelSpeakService;
import com.threerings.presents.client.Client; import com.threerings.presents.client.Client;
import com.threerings.presents.data.InvocationMarshaller; import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.crowd.chat.client.ChannelSpeakService;
/** /**
* Provides the implementation of the {@link ChannelSpeakService} interface * Provides the implementation of the {@link ChannelSpeakService} interface
* that marshalls the arguments and delivers the request to the provider * that marshalls the arguments and delivers the request to the provider
@@ -21,14 +21,12 @@
package com.threerings.crowd.chat.data; package com.threerings.crowd.chat.data;
import com.threerings.util.Name; import com.threerings.crowd.chat.client.ChatService;
import com.threerings.presents.client.Client; import com.threerings.presents.client.Client;
import com.threerings.presents.client.InvocationService; import com.threerings.presents.client.InvocationService;
import com.threerings.presents.data.InvocationMarshaller; import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.presents.dobj.InvocationResponseEvent; import com.threerings.presents.dobj.InvocationResponseEvent;
import com.threerings.util.Name;
import com.threerings.crowd.chat.client.ChatService;
/** /**
* Provides the implementation of the {@link ChatService} interface * Provides the implementation of the {@link ChatService} interface
@@ -21,11 +21,10 @@
package com.threerings.crowd.chat.data; package com.threerings.crowd.chat.data;
import com.threerings.crowd.chat.client.SpeakService;
import com.threerings.presents.client.Client; import com.threerings.presents.client.Client;
import com.threerings.presents.data.InvocationMarshaller; import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.crowd.chat.client.SpeakService;
/** /**
* Provides the implementation of the {@link SpeakService} interface * Provides the implementation of the {@link SpeakService} interface
* that marshalls the arguments and delivers the request to the provider * that marshalls the arguments and delivers the request to the provider
@@ -21,13 +21,12 @@
package com.threerings.crowd.chat.server; package com.threerings.crowd.chat.server;
import com.threerings.crowd.chat.data.ChannelSpeakMarshaller;
import com.threerings.crowd.chat.data.ChatChannel;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationDispatcher; import com.threerings.presents.server.InvocationDispatcher;
import com.threerings.presents.server.InvocationException; import com.threerings.presents.server.InvocationException;
import com.threerings.crowd.chat.data.ChannelSpeakMarshaller;
import com.threerings.crowd.chat.data.ChatChannel;
/** /**
* Dispatches requests to the {@link ChannelSpeakProvider}. * Dispatches requests to the {@link ChannelSpeakProvider}.
*/ */
@@ -21,11 +21,10 @@
package com.threerings.crowd.chat.server; package com.threerings.crowd.chat.server;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationProvider;
import com.threerings.crowd.chat.client.ChannelSpeakService; import com.threerings.crowd.chat.client.ChannelSpeakService;
import com.threerings.crowd.chat.data.ChatChannel; import com.threerings.crowd.chat.data.ChatChannel;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationProvider;
/** /**
* Defines the server-side of the {@link ChannelSpeakService}. * Defines the server-side of the {@link ChannelSpeakService}.
@@ -21,15 +21,13 @@
package com.threerings.crowd.chat.server; package com.threerings.crowd.chat.server;
import com.threerings.util.Name; import com.threerings.crowd.chat.client.ChatService;
import com.threerings.crowd.chat.data.ChatMarshaller;
import com.threerings.presents.client.InvocationService; import com.threerings.presents.client.InvocationService;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationDispatcher; import com.threerings.presents.server.InvocationDispatcher;
import com.threerings.presents.server.InvocationException; import com.threerings.presents.server.InvocationException;
import com.threerings.util.Name;
import com.threerings.crowd.chat.client.ChatService;
import com.threerings.crowd.chat.data.ChatMarshaller;
/** /**
* Dispatches requests to the {@link ChatProvider}. * Dispatches requests to the {@link ChatProvider}.
@@ -21,12 +21,11 @@
package com.threerings.crowd.chat.server; package com.threerings.crowd.chat.server;
import com.threerings.crowd.chat.data.SpeakMarshaller;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationDispatcher; import com.threerings.presents.server.InvocationDispatcher;
import com.threerings.presents.server.InvocationException; import com.threerings.presents.server.InvocationException;
import com.threerings.crowd.chat.data.SpeakMarshaller;
/** /**
* Dispatches requests to the {@link SpeakProvider}. * Dispatches requests to the {@link SpeakProvider}.
*/ */
@@ -21,11 +21,10 @@
package com.threerings.crowd.chat.server; package com.threerings.crowd.chat.server;
import com.threerings.crowd.chat.client.SpeakService;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationProvider; import com.threerings.presents.server.InvocationProvider;
import com.threerings.crowd.chat.client.SpeakService;
/** /**
* Defines the server-side of the {@link SpeakService}. * Defines the server-side of the {@link SpeakService}.
*/ */
@@ -21,11 +21,10 @@
package com.threerings.crowd.data; package com.threerings.crowd.data;
import com.threerings.crowd.client.BodyService;
import com.threerings.presents.client.Client; import com.threerings.presents.client.Client;
import com.threerings.presents.data.InvocationMarshaller; import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.crowd.client.BodyService;
/** /**
* Provides the implementation of the {@link BodyService} interface * Provides the implementation of the {@link BodyService} interface
* that marshalls the arguments and delivers the request to the provider * that marshalls the arguments and delivers the request to the provider
@@ -21,12 +21,11 @@
package com.threerings.crowd.data; package com.threerings.crowd.data;
import com.threerings.crowd.client.LocationService;
import com.threerings.presents.client.Client; import com.threerings.presents.client.Client;
import com.threerings.presents.data.InvocationMarshaller; import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.presents.dobj.InvocationResponseEvent; import com.threerings.presents.dobj.InvocationResponseEvent;
import com.threerings.crowd.client.LocationService;
/** /**
* Provides the implementation of the {@link LocationService} interface * Provides the implementation of the {@link LocationService} interface
* that marshalls the arguments and delivers the request to the provider * that marshalls the arguments and delivers the request to the provider
@@ -21,15 +21,13 @@
package com.threerings.crowd.peer.data; package com.threerings.crowd.peer.data;
import com.threerings.util.Name;
import com.threerings.presents.client.Client;
import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.crowd.chat.client.ChatService; import com.threerings.crowd.chat.client.ChatService;
import com.threerings.crowd.chat.data.ChatMarshaller; import com.threerings.crowd.chat.data.ChatMarshaller;
import com.threerings.crowd.chat.data.UserMessage; import com.threerings.crowd.chat.data.UserMessage;
import com.threerings.crowd.peer.client.CrowdPeerService; import com.threerings.crowd.peer.client.CrowdPeerService;
import com.threerings.presents.client.Client;
import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.util.Name;
/** /**
* Provides the implementation of the {@link CrowdPeerService} interface * Provides the implementation of the {@link CrowdPeerService} interface
@@ -21,15 +21,13 @@
package com.threerings.crowd.peer.server; package com.threerings.crowd.peer.server;
import com.threerings.util.Name;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationDispatcher;
import com.threerings.presents.server.InvocationException;
import com.threerings.crowd.chat.client.ChatService; import com.threerings.crowd.chat.client.ChatService;
import com.threerings.crowd.chat.data.UserMessage; import com.threerings.crowd.chat.data.UserMessage;
import com.threerings.crowd.peer.data.CrowdPeerMarshaller; import com.threerings.crowd.peer.data.CrowdPeerMarshaller;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationDispatcher;
import com.threerings.presents.server.InvocationException;
import com.threerings.util.Name;
/** /**
* Dispatches requests to the {@link CrowdPeerProvider}. * Dispatches requests to the {@link CrowdPeerProvider}.
@@ -21,15 +21,13 @@
package com.threerings.crowd.peer.server; package com.threerings.crowd.peer.server;
import com.threerings.util.Name;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationException;
import com.threerings.presents.server.InvocationProvider;
import com.threerings.crowd.chat.client.ChatService; import com.threerings.crowd.chat.client.ChatService;
import com.threerings.crowd.chat.data.UserMessage; import com.threerings.crowd.chat.data.UserMessage;
import com.threerings.crowd.peer.client.CrowdPeerService; import com.threerings.crowd.peer.client.CrowdPeerService;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationException;
import com.threerings.presents.server.InvocationProvider;
import com.threerings.util.Name;
/** /**
* Defines the server-side of the {@link CrowdPeerService}. * Defines the server-side of the {@link CrowdPeerService}.
@@ -21,12 +21,11 @@
package com.threerings.crowd.server; package com.threerings.crowd.server;
import com.threerings.crowd.data.BodyMarshaller;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationDispatcher; import com.threerings.presents.server.InvocationDispatcher;
import com.threerings.presents.server.InvocationException; import com.threerings.presents.server.InvocationException;
import com.threerings.crowd.data.BodyMarshaller;
/** /**
* Dispatches requests to the {@link BodyProvider}. * Dispatches requests to the {@link BodyProvider}.
*/ */
@@ -21,11 +21,10 @@
package com.threerings.crowd.server; package com.threerings.crowd.server;
import com.threerings.crowd.client.BodyService;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationProvider; import com.threerings.presents.server.InvocationProvider;
import com.threerings.crowd.client.BodyService;
/** /**
* Defines the server-side of the {@link BodyService}. * Defines the server-side of the {@link BodyService}.
*/ */
@@ -21,13 +21,12 @@
package com.threerings.crowd.server; package com.threerings.crowd.server;
import com.threerings.crowd.client.LocationService;
import com.threerings.crowd.data.LocationMarshaller;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationDispatcher; import com.threerings.presents.server.InvocationDispatcher;
import com.threerings.presents.server.InvocationException; import com.threerings.presents.server.InvocationException;
import com.threerings.crowd.client.LocationService;
import com.threerings.crowd.data.LocationMarshaller;
/** /**
* Dispatches requests to the {@link LocationProvider}. * Dispatches requests to the {@link LocationProvider}.
*/ */
@@ -21,12 +21,11 @@
package com.threerings.crowd.server; package com.threerings.crowd.server;
import com.threerings.crowd.client.LocationService;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationException; import com.threerings.presents.server.InvocationException;
import com.threerings.presents.server.InvocationProvider; import com.threerings.presents.server.InvocationProvider;
import com.threerings.crowd.client.LocationService;
/** /**
* Defines the server-side of the {@link LocationService}. * Defines the server-side of the {@link LocationService}.
*/ */