diff --git a/src/java/com/threerings/presents/net/AuthResponseData.java b/src/java/com/threerings/presents/net/AuthResponseData.java index 2d78e9e29..f040a0aad 100644 --- a/src/java/com/threerings/presents/net/AuthResponseData.java +++ b/src/java/com/threerings/presents/net/AuthResponseData.java @@ -1,5 +1,5 @@ // -// $Id: AuthResponseData.java,v 1.11 2004/08/27 02:20:21 mdb Exp $ +// $Id$ // // Narya library - tools for developing networked games // Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved @@ -21,7 +21,7 @@ package com.threerings.presents.net; -import com.threerings.presents.dobj.DObject; +import com.threerings.io.SimpleStreamableObject; /** * An AuthResponseData object is communicated back to the @@ -29,7 +29,7 @@ import com.threerings.presents.dobj.DObject; * of authentication success or failure along with bootstrap information * for the client. */ -public class AuthResponseData extends DObject +public class AuthResponseData extends SimpleStreamableObject { /** The constant used to indicate a successful authentication. */ public static final String SUCCESS = "success"; diff --git a/src/java/com/threerings/presents/net/BootstrapData.java b/src/java/com/threerings/presents/net/BootstrapData.java index 629b44b16..332418c76 100644 --- a/src/java/com/threerings/presents/net/BootstrapData.java +++ b/src/java/com/threerings/presents/net/BootstrapData.java @@ -1,5 +1,5 @@ // -// $Id: BootstrapData.java,v 1.8 2004/08/27 02:20:22 mdb Exp $ +// $Id$ // // Narya library - tools for developing networked games // Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved @@ -21,7 +21,7 @@ package com.threerings.presents.net; -import com.threerings.presents.dobj.DObject; +import com.threerings.io.SimpleStreamableObject; import com.threerings.util.StreamableArrayList; /** @@ -30,7 +30,7 @@ import com.threerings.util.StreamableArrayList; * prepared to deal with the client. It contains information the client * will need to interact with the server. */ -public class BootstrapData extends DObject +public class BootstrapData extends SimpleStreamableObject { /** The oid of this client's associated distributed object. */ public int clientOid;