More revamped serialization cleanup.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2079 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,13 +1,8 @@
|
||||
//
|
||||
// $Id: AuthRequest.java,v 1.10 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: AuthRequest.java,v 1.11 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
|
||||
public class AuthRequest extends UpstreamMessage
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -1,13 +1,8 @@
|
||||
//
|
||||
// $Id: AuthResponse.java,v 1.13 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: AuthResponse.java,v 1.14 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
|
||||
/**
|
||||
* The auth response communicates authentication success or failure as
|
||||
* well as associated information via a distribted object transmitted
|
||||
|
||||
@@ -1,13 +1,8 @@
|
||||
//
|
||||
// $Id: BootstrapNotification.java,v 1.5 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: BootstrapNotification.java,v 1.6 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
|
||||
/**
|
||||
* A bootstrap notification is delivered to the client once the server has
|
||||
* fully initialized itself in preparation for dealing with this client.
|
||||
|
||||
@@ -1,12 +1,8 @@
|
||||
//
|
||||
// $Id: Credentials.java,v 1.10 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: Credentials.java,v 1.11 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
import com.threerings.io.Streamable;
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,12 +1,8 @@
|
||||
//
|
||||
// $Id: DownstreamMessage.java,v 1.10 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: DownstreamMessage.java,v 1.11 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
import com.threerings.io.SimpleStreamableObject;
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,13 +1,8 @@
|
||||
//
|
||||
// $Id: EventNotification.java,v 1.12 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: EventNotification.java,v 1.13 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
|
||||
import com.threerings.presents.dobj.DEvent;
|
||||
|
||||
public class EventNotification extends DownstreamMessage
|
||||
|
||||
@@ -1,13 +1,8 @@
|
||||
//
|
||||
// $Id: FailureResponse.java,v 1.9 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: FailureResponse.java,v 1.10 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
|
||||
public class FailureResponse extends DownstreamMessage
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -1,13 +1,8 @@
|
||||
//
|
||||
// $Id: ForwardEventRequest.java,v 1.11 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: ForwardEventRequest.java,v 1.12 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
|
||||
import com.threerings.presents.dobj.DEvent;
|
||||
|
||||
public class ForwardEventRequest extends UpstreamMessage
|
||||
|
||||
@@ -1,13 +1,8 @@
|
||||
//
|
||||
// $Id: ObjectResponse.java,v 1.13 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: ObjectResponse.java,v 1.14 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
|
||||
import com.threerings.presents.dobj.DObject;
|
||||
|
||||
public class ObjectResponse extends DownstreamMessage
|
||||
|
||||
@@ -1,13 +1,8 @@
|
||||
//
|
||||
// $Id: SubscribeRequest.java,v 1.7 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: SubscribeRequest.java,v 1.8 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
|
||||
public class SubscribeRequest extends UpstreamMessage
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -1,13 +1,8 @@
|
||||
//
|
||||
// $Id: UnsubscribeRequest.java,v 1.8 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: UnsubscribeRequest.java,v 1.9 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
|
||||
public class UnsubscribeRequest extends UpstreamMessage
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -1,12 +1,8 @@
|
||||
//
|
||||
// $Id: UpstreamMessage.java,v 1.10 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: UpstreamMessage.java,v 1.11 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
import com.threerings.io.SimpleStreamableObject;
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,13 +1,8 @@
|
||||
//
|
||||
// $Id: UsernamePasswordCreds.java,v 1.10 2002/12/20 23:28:24 mdb Exp $
|
||||
// $Id: UsernamePasswordCreds.java,v 1.11 2002/12/20 23:41:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.threerings.io.ObjectInputStream;
|
||||
import com.threerings.io.ObjectOutputStream;
|
||||
|
||||
public class UsernamePasswordCreds extends Credentials
|
||||
{
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user