The first great Three Rings renaming. Cocktail changed to Narya, Cher
changed to Presents and Party changed to Crowd. Whee! git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@431 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
//
|
||||
// $Id: AuthRequest.java,v 1.6 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: AuthRequest.java,v 1.7 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
|
||||
import com.threerings.cocktail.cher.io.TypedObjectFactory;
|
||||
import com.threerings.presents.io.TypedObjectFactory;
|
||||
|
||||
public class AuthRequest extends UpstreamMessage
|
||||
{
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
//
|
||||
// $Id: AuthResponse.java,v 1.8 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: AuthResponse.java,v 1.9 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
|
||||
import com.threerings.cocktail.cher.dobj.io.DObjectFactory;
|
||||
import com.threerings.presents.dobj.io.DObjectFactory;
|
||||
|
||||
/**
|
||||
* The auth response communicates authentication success or failure as
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// $Id: AuthResponseData.java,v 1.8 2001/10/03 03:41:04 mdb Exp $
|
||||
// $Id: AuthResponseData.java,v 1.9 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import com.threerings.cocktail.cher.dobj.DObject;
|
||||
import com.threerings.presents.dobj.DObject;
|
||||
|
||||
/**
|
||||
* An <code>AuthResponseData</code> object is communicated back to the
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// $Id: BootstrapData.java,v 1.2 2001/10/09 18:17:52 mdb Exp $
|
||||
// $Id: BootstrapData.java,v 1.3 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import com.threerings.cocktail.cher.dobj.DObject;
|
||||
import com.threerings.presents.dobj.DObject;
|
||||
|
||||
/**
|
||||
* A <code>BootstrapData</code> object is communicated back to the client
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
//
|
||||
// $Id: BootstrapNotification.java,v 1.2 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: BootstrapNotification.java,v 1.3 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
|
||||
import com.threerings.cocktail.cher.dobj.io.DObjectFactory;
|
||||
import com.threerings.presents.dobj.io.DObjectFactory;
|
||||
|
||||
/**
|
||||
* A bootstrap notification is delivered to the client once the server has
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
//
|
||||
// $Id: Credentials.java,v 1.6 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: Credentials.java,v 1.7 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
|
||||
import com.threerings.cocktail.cher.io.TypedObject;
|
||||
import com.threerings.cocktail.cher.io.TypedObjectFactory;
|
||||
import com.threerings.presents.io.TypedObject;
|
||||
import com.threerings.presents.io.TypedObjectFactory;
|
||||
|
||||
/**
|
||||
* Credentials are supplied by the client implementation and sent along to
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
//
|
||||
// $Id: DownstreamMessage.java,v 1.7 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: DownstreamMessage.java,v 1.8 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
|
||||
import com.threerings.cocktail.cher.io.TypedObject;
|
||||
import com.threerings.presents.io.TypedObject;
|
||||
|
||||
/**
|
||||
* The <code>DownstreamMessage</code> class encapsulates a message in the
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
//
|
||||
// $Id: EventNotification.java,v 1.9 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: EventNotification.java,v 1.10 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
|
||||
import com.threerings.cocktail.cher.dobj.TypedEvent;
|
||||
import com.threerings.cocktail.cher.io.TypedObjectFactory;
|
||||
import com.threerings.presents.dobj.TypedEvent;
|
||||
import com.threerings.presents.io.TypedObjectFactory;
|
||||
|
||||
public class EventNotification extends DownstreamMessage
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: FailureResponse.java,v 1.6 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: FailureResponse.java,v 1.7 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
//
|
||||
// $Id: ForwardEventRequest.java,v 1.8 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: ForwardEventRequest.java,v 1.9 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
|
||||
import com.threerings.cocktail.cher.dobj.TypedEvent;
|
||||
import com.threerings.cocktail.cher.io.TypedObjectFactory;
|
||||
import com.threerings.presents.dobj.TypedEvent;
|
||||
import com.threerings.presents.io.TypedObjectFactory;
|
||||
|
||||
public class ForwardEventRequest extends UpstreamMessage
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: LogoffRequest.java,v 1.4 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: LogoffRequest.java,v 1.5 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
public class LogoffRequest extends UpstreamMessage
|
||||
{
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
//
|
||||
// $Id: ObjectResponse.java,v 1.10 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: ObjectResponse.java,v 1.11 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
|
||||
import com.threerings.cocktail.cher.dobj.DObject;
|
||||
import com.threerings.cocktail.cher.dobj.io.DObjectFactory;
|
||||
import com.threerings.presents.dobj.DObject;
|
||||
import com.threerings.presents.dobj.io.DObjectFactory;
|
||||
|
||||
public class ObjectResponse extends DownstreamMessage
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: PingRequest.java,v 1.4 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: PingRequest.java,v 1.5 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
public class PingRequest extends UpstreamMessage
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: PongResponse.java,v 1.5 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: PongResponse.java,v 1.6 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
public class PongResponse extends DownstreamMessage
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: SubscribeRequest.java,v 1.4 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: SubscribeRequest.java,v 1.5 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: UnsubscribeRequest.java,v 1.5 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: UnsubscribeRequest.java,v 1.6 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
//
|
||||
// $Id: UpstreamMessage.java,v 1.7 2001/07/19 19:30:14 mdb Exp $
|
||||
// $Id: UpstreamMessage.java,v 1.8 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
|
||||
import com.threerings.cocktail.cher.io.TypedObject;
|
||||
import com.threerings.presents.io.TypedObject;
|
||||
|
||||
/**
|
||||
* The <code>UpstreamMessage</code> class encapsulates a message in the
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: UsernamePasswordCreds.java,v 1.5 2001/06/02 01:30:37 mdb Exp $
|
||||
// $Id: UsernamePasswordCreds.java,v 1.6 2001/10/11 04:07:53 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
|
||||
Reference in New Issue
Block a user